Skip to content

Commit

Permalink
Fix sass deprecation warning
Browse files Browse the repository at this point in the history
@include can apparently no longer appear at top
  • Loading branch information
cdrini committed Oct 15, 2024
1 parent 5bd9cab commit eebda85
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/css/_BRicon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@ i.BRicon { display: inline-block; }
.BRicon.info { @include sprite-offet(1); }
.BRicon.share { @include sprite-offet(3); }
// We can only transition these because they are adjacent
.BRicon.read { @include sprite-offet(5); transition-property: background-color, border, background-position; }
.BRicon.unread { @include sprite-offet(7); transition-property: background-color, border, background-position; }
.BRicon.read {
transition-property: background-color, border, background-position;
@include sprite-offet(5);
}
.BRicon.unread {
transition-property: background-color, border, background-position;
@include sprite-offet(7);
}
.BRicon.fit { @include sprite-offet(9); }
.BRicon.download { @include sprite-offet(38); }
.BRicon.return { @include sprite-offet(26); }
Expand Down

0 comments on commit eebda85

Please sign in to comment.