Skip to content

Commit

Permalink
fix: add hover and active state to square button [PT-188162618]
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanik committed Aug 27, 2024
1 parent 8ba96bc commit d3829df
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/components/square-button.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
@import "./vars.scss";

.square-button {
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
color: #177991;
color: $teal-dark;
border-radius: 3px;
border: 1px solid #177991;
border: 1px solid $teal-dark;
background-color: white;
cursor: pointer;

&:hover {
background-color: $teal-light-25;
}
&:active {
background-color: $teal-light-50;
}
}

0 comments on commit d3829df

Please sign in to comment.