Skip to content

Commit

Permalink
example: swap low/high classes
Browse files Browse the repository at this point in the history
  • Loading branch information
sebkolind committed Dec 5, 2023
1 parent 410ce6f commit af89e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
.paragraph {
transition: background-color 0.3s ease;

&.high {
&.low {
background-color: #f44336;
&:hover {
background-color: #da190b;
}
}

&.low {
&.high {
background-color: #2196F3;
&:hover {
background-color: #0b7dda;
Expand Down

0 comments on commit af89e7f

Please sign in to comment.