Skip to content

Commit

Permalink
feat(client): added visual hover effects and borders on buttons, to m…
Browse files Browse the repository at this point in the history
…ake it more usable on mobile
  • Loading branch information
Will Moss committed Jul 30, 2024
1 parent a2c9cb2 commit cda85cf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/BlacklistManager/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@
text-decoration: none;
color: #002dff;
}
.blacklist-entry .left a:hover {
text-decoration: underline;
}
.blacklist-entry .right {
display: flex;
flex-direction: column;
Expand All @@ -134,8 +137,12 @@
width: 48px;
border-radius: 23051998px;
outline: 0;
cursor: pointer;
border: 0;
}
.blacklist-entry .right button:hover {
background: #008f00;
}
.blacklist-entry .right button svg {
font-size: 18px;
color: white;
Expand Down
4 changes: 4 additions & 0 deletions src/components/BottomNavbar/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
outline: 0;
border: 0;
cursor: pointer;
outline: 1px solid #333;
}
.bottom-navbar .nav-item:hover {
background: #333;
}

.bottom-navbar .icon {
Expand Down

0 comments on commit cda85cf

Please sign in to comment.