1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-05 17:08:29 +00:00

Add hover effect to menu buttons

This commit is contained in:
Unrud 2020-03-02 02:22:08 +01:00
parent ae2a8024f8
commit 0d7fc25847

View file

@ -28,6 +28,7 @@ nav {
scrollbar-width: initial; scrollbar-width: initial;
transition: width ease .2s; transition: width ease .2s;
max-height: initial !important; max-height: initial !important;
margin: 0;
} }
html.nav-opened { html.nav-opened {
@ -73,4 +74,9 @@ main, .navContainer {
z-index: 1; z-index: 1;
border-radius: 3px; border-radius: 3px;
pointer-events: initial; pointer-events: initial;
transition: color .2s ease;
}
.navButtonContainer button:hover {
color: black;
} }