Skip to content

Commit

Permalink
increase font-size & add animation on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
JuzerShakir committed Dec 26, 2023
1 parent b4cd503 commit ccef109
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions app/assets/stylesheets/layouts/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@
#thaalis,
#transactions,
#users {
.row:not(:last-child) {
border-bottom: 2px solid $secondary;
}
:hover {
background-color: #e4e2b2;
.row {
transition: background-color 0.4s ease-in-out;

&:not(:last-child) {
border-bottom: 2px solid $secondary;
}

&:hover,
&:active {
background-color: #e4e2b2;
font-size: 1.06rem;
}
}
}

0 comments on commit ccef109

Please # to comment.