fix(mobile-menu): background-color

This commit is contained in:
curben 2019-12-18 06:19:47 +00:00
parent 19fed85fd8
commit 763f7dc008
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 5 additions and 2 deletions

View File

@ -609,6 +609,7 @@ td {
/* overlap other elements */
.mobile-nav-link {
background: black;
border: 2px solid #999;
border-radius: 5px;
right: 0;
@ -776,7 +777,8 @@ svg#link {
}
@media (prefers-color-scheme: dark) {
body {
body,
.mobile-nav-link {
background: black;
color: #e6e6e6;
}
@ -811,7 +813,8 @@ svg#link {
}
@media (prefers-color-scheme: light) {
body {
body,
.mobile-nav-link {
background: #f1f1f1;
color: #333;
}