Skip to content

Commit 573196b

Browse files
authored
fix(scss): invalid max-height CSS value, and SCSS selector typo (#7169)
1 parent d32a5cc commit 573196b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/avatar/_avatar.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
font-weight: 400;
1313
line-height: 1;
1414
max-width: 100%;
15-
max-height: auto;
15+
max-height: 100%;
1616
text-align: center;
1717
overflow: visible;
1818
position: relative;
@@ -82,7 +82,7 @@
8282
.b-avatar-img img {
8383
width: 100%;
8484
height: 100%;
85-
max-height: auto;
85+
max-height: 100%;
8686
border-radius: inherit;
8787
// This is not supported in IE11 and Edge <16
8888
// https://caniuse.com/object-fit

src/components/form-spinbutton/_spinbutton.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444

4545
&:not(.d-inline-flex):not(.flex-column) {
46-
output: {
46+
output {
4747
width: 100%;
4848
}
4949
}

0 commit comments

Comments
 (0)