disabled tweaks on cards

This commit is contained in:
lvuch 2020-12-10 15:59:57 -07:00
parent ffdea6480b
commit f94679e0db
2 changed files with 5 additions and 5 deletions

View File

@ -20,8 +20,11 @@
}
&.disabled{
background-color: var(---disabled-bg);
background-color: var(--disabled-bg);
border-left: solid 10px var(--disabled-text);
> * {
opacity: .3;
}
}
&:hover:not(.disabled) {
@ -42,9 +45,6 @@
.link-logo {
text-align: center;
// position: absolute;
// left: 25px;
// top: 25px;
width: 60px;
height: 60px;
border-radius: calc(2 * var(--border-radius));

View File

@ -59,7 +59,7 @@
--nav-bg: #{$darkest};
--nav-active: #{rgba($primary, 0.3)};
--disabled-bg: #{$disabled};
--disabled-bg: #{darken($disabled, 10%)};
--disabled-text: #{$secondary};
--box-bg: #{$darkest};
--subtle-border: #{$darkest};