💄 Adds CSS for disabled SVG button option

This commit is contained in:
Alicia Sykes 2021-10-22 00:25:27 +01:00
parent 48947785bd
commit b90301e479
1 changed files with 9 additions and 0 deletions

View File

@ -34,6 +34,15 @@
background: var(--settings-text-color);
path { fill: var(--background); }
}
&.disabled {
opacity: var(--dimming-factor);
cursor: not-allowed;
&:hover {
border: 1px solid currentColor;
background: var(--background);
path { fill: var(--settings-text-color); }
}
}
}
}