v0.10.20b - Darkmode fixes

This commit is contained in:
frederikpyt 2020-08-31 14:41:44 +02:00
parent efb2840ff0
commit 34b078b21a
1 changed files with 11 additions and 5 deletions

View File

@ -10,7 +10,11 @@
margin-bottom: 7px; margin-bottom: 7px;
width: auto; width: auto;
heigt: auto; heigt: auto;
background-color: white; @if(request()->cookie("mode") == "dark")
background-color: rgba(0,0,0, 0.3);
@else
background-color: white;
@endif
} }
div.header { div.header {
@ -56,19 +60,21 @@
.information{ .information{
text-align: center; text-align: center;
background-color: rgba(211, 211, 211, 0.3); background-color: rgba(0, 0, 0, 0.2);
width: 100%; width: 100%;
height: 25px; height: 25px;
} }
.card > .img > a > img, .card > .img > img { .card > .img > a > img, .card > .img > img {
width: 100%; width: 100%;
} {
width: 100%;
} }
html,body,main{ html,body,main{
background-color: rgb(200,200,200); @if(request()->cookie("mode") == "dark")
@else
background-color: rgb(200,200,200);
@endif
} }