Skip to content

Commit

Permalink
Fix annoying Dart Sass 1.80 deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorbg committed Oct 21, 2024
1 parent 2c9f757 commit dae6b90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions app/webpacker/stylesheets/competition_results.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "variables";
@use "variables";

.competition-results {
.events-list {
Expand All @@ -15,13 +15,13 @@
vertical-align: middle;
}
.WR {
color : $wr-color;
color : variables.$wr-color;
}
.CR {
color : $cr-color;
color : variables.$cr-color;
}
.NR {
color : $nr-color;
color : variables.$nr-color;
}
.edit-link {
margin-left: 1em;
Expand Down
6 changes: 3 additions & 3 deletions app/webpacker/stylesheets/user_badge.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "variables";
@use "variables";

.user-badge {
margin: 4px !important;
Expand All @@ -12,13 +12,13 @@

&.leader {
.user-badge-subtext {
color: $dark-blue;
color: variables.$dark-blue;
}
}

&.senior {
.user-badge-subtext {
color: $dark-green;
color: variables.$dark-green;
}
}

Expand Down

0 comments on commit dae6b90

Please sign in to comment.