We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c9387 commit fd98d8cCopy full SHA for fd98d8c
src/components/Alert/Alert.tsx
@@ -38,7 +38,10 @@ const Alert = ({
38
return (
39
<Element className={classes} {...rest}>
40
{icon && icon}
41
- {!icon && theme && <div dangerouslySetInnerHTML={{ __html: iconMap[theme] }} />}
+ {!icon && theme && <div
42
+ dangerouslySetInnerHTML={{ __html: iconMap[theme] }}
43
+ style={{ height: '20px' }}
44
+ />}
45
46
<ConditionalWrapper condition={!!(icon || theme)} wrapper={children => (
47
<div className={styles.wrapper}>
src/components/Avatar/avatar.module.scss
@@ -7,6 +7,8 @@ body {
7
.avatar {
8
@include border-radius(max);
9
10
+ object-fit: cover;
11
+
12
&:not(.borderless) {
13
border: 3px solid var(--w-avatar-border);
14
}
0 commit comments