Skip to content

Commit

Permalink
fix: Sass issue with declaration order.
Browse files Browse the repository at this point in the history
_search.scss:10:2: 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 `& {}`.
  • Loading branch information
oalders committed Oct 29, 2024
1 parent f78f011 commit 5ed5fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/scss/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
}

.search__button {
@include mixins.menu-button;
float: right;
@include mixins.menu-button;
}

.search__button svg {
Expand Down

0 comments on commit 5ed5fbb

Please sign in to comment.