fix: mature tags in dark mode

This commit is contained in:
Sean Yesmunt 2019-07-09 02:11:30 -04:00
parent 4d414775bc
commit 985f60d83c
2 changed files with 8 additions and 3 deletions

View file

@ -31,4 +31,8 @@
svg {
stroke: $lbry-black;
}
[data-mode='dark'] & {
background-color: rgba($lbry-grape-1, 0.3);
}
}

View file

@ -236,13 +236,14 @@ fieldset-section {
.button,
// specificity needed because of @lbry/component rules
// @lbry/componentfixme
.button[type='submit']:not(:hover) {
// @lbry/componentsfixme
.button[type='submit']:not(:hover),
.button[type='submit']:hover {
border-color: $lbry-black;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: var(--input-border-radius);
border-bottom-right-radius: var(--input-border-radius);
border-color: $lbry-black;
}
}