fix html in dark mode

This commit is contained in:
Sean Yesmunt 2018-11-27 11:56:57 -05:00
parent e0d6537c96
commit 13810ca989

View file

@ -1,4 +1,11 @@
html[data-theme='dark'] { html[data-theme='dark'] {
//
// HTML Elements
//
blockquote {
background-color: rgba($lbry-black, 0.9);
}
.header { .header {
background-color: rgba($lbry-black, 0.9); background-color: rgba($lbry-black, 0.9);
} }
@ -203,4 +210,11 @@ html[data-theme='dark'] {
.expandable--closed::after { .expandable--closed::after {
background-image: linear-gradient(to bottom, transparent 0%, $lbry-black 90%); background-image: linear-gradient(to bottom, transparent 0%, $lbry-black 90%);
} }
//
// File Viewer
//
.document-viewer {
background-color: rgba($lbry-gray-5, 0.2);
}
} }