Skip to content

Commit

Permalink
Fixed the lint error (hover styling for axis input was declared befor…
Browse files Browse the repository at this point in the history
…e styling of the actual button)
  • Loading branch information
angoway committed Nov 6, 2024
1 parent 6db3013 commit ea23da2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/styles/Exercises/AxisInput.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@
background-color: colors.$input-grey;
}

#axinput-check-button:hover {
box-shadow: 5px 5px 5px #989696;
}

#axinput-check-button:active {
box-shadow: none;
transform: scale(0.95);
}

#axinput-check-button {
@include font-styles();
background-color: colors.$primary-green;
Expand All @@ -76,6 +67,15 @@
padding: 1.25vw 2.5vw;
}

#axinput-check-button:hover {
box-shadow: 5px 5px 5px #989696;
}

#axinput-check-button:active {
box-shadow: none;
transform: scale(0.95);
}

#axinput-check-wrong {
@include font-styles();
color: red;
Expand Down

0 comments on commit ea23da2

Please sign in to comment.