Skip to content

Commit 7fddc9b

Browse files
wonda-tea-coffeerjherrera
authored andcommitted
Suppress sass deprecation warning
The following deprecation warning was addressed. ``` Deprecation Warning: Sass's behavior for declarations that appear after nested rules will be changing to match the behavior specified by CSS in an upcoming version. To keep the existing behavior, move the declaration above the nested rule. To opt into the new behavior, wrap the declaration in `& {}`. More info: https://sass-lang.com/d/mixed-decls ╷ 5 │ ┌ label { 6 │ │ display: none; 7 │ │ } │ └─── nested rule ... │ 5 │ ┌ label { 6 │ │ display: none; 7 │ │ } │ └─── nested rule ... │ 9 │ margin-bottom: 5px; │ ^^^^^^^^^^^^^^^^^^ declaration ╵ vendor/bundle/gems/activeadmin_addons-1.10.1/app/assets/stylesheets/activeadmin_addons/inputs/date-ti me-picker-filter.scss 9:5 @import (snip) ``` This warning is due to the following change in dart-sass. sass/dart-sass#2267
1 parent 60c8c6c commit 7fddc9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
.filter_date_time_picker_filter {
22
li {
33
list-style: none;
4+
margin-bottom: 5px;
45

56
label {
67
display: none;
78
}
8-
9-
margin-bottom: 5px;
109
}
1110
}

0 commit comments

Comments
 (0)