Skip to content

Commit

Permalink
increase splitter contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
moalamri committed Dec 3, 2024
1 parent 2121294 commit e3af70e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/routes/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,23 @@
position: relative;
flex-shrink: 0;

&:hover {
background-color: rgb(37 99 235);
transition: background-color 0.3s;
}

&:after {
content: '';
position: absolute;
top: 50%;
left: 0;
left: 0.05px;
background-color: rgb(203 213 225);
transition: background-color 0.3s;
border-radius: 2px;
}

&:hover:after {
background-color: rgba(0, 0, 0, 0.25);
background-color: rgb(30 85 135);
}

&:first-child {
Expand Down

0 comments on commit e3af70e

Please sign in to comment.