fix: correction d'une erreur de priorité dans les feuilles de style

This commit is contained in:
Darks 2020-07-13 23:26:35 +02:00
parent 54d27478e1
commit a2cf0b2c78
Signed by untrusted user: Darks
GPG Key ID: F61F10FA138E797C
1 changed files with 3 additions and 2 deletions

View File

@ -74,7 +74,8 @@ nav a:focus {
position: fixed; z-index: 5;
left: -190px; width: 300px; /* default: left-to-right animation */
height: 100%; overflow-x: hidden; overflow-y: auto;
background: var(--background); box-shadow: var(--shadow);
background: var(--background); color: var(--text);
box-shadow: var(--shadow);
transition: .15s ease;
}
#menu.opened {
@ -173,5 +174,5 @@ nav a:focus {
margin: 8px 0 5px 0;
}
#menu form label {
font-size: 13px; color: var(--text); opacity: .8;
font-size: 13px; opacity: .8;
}