Skip to content

Commit 639ebd3

Browse files
Fix Sass deprecation warning
To keep the existing behavior, move the declaration above the nested rule. More info: https://sass-lang.com/d/mixed-decls
1 parent 97d6aed commit 639ebd3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/Answers.module.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66

77
.answers {
88
min-height: 32px;
9+
display: flex;
10+
align-items: center;
11+
border-radius: 4px;
12+
padding-left: 15px;
13+
914
* {
1015
@include variables.font-s;
1116
}
@@ -14,11 +19,6 @@
1419
margin-bottom: 8px;
1520
}
1621

17-
display: flex;
18-
align-items: center;
19-
border-radius: 4px;
20-
padding-left: 15px;
21-
2222
&.default {
2323
background-color: variables.$neutral-light;
2424
}

0 commit comments

Comments
 (0)