diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-13 01:56:29 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-13 01:56:29 +0200 |
| commit | 8d2f2866f6d32b4ada155d76e07910b92c218146 (patch) | |
| tree | 7c1ed9597a5753c5b3aff862e0e4ed717906a95d /src/App.scss | |
| parent | 5881c13adc312f864a280f9216993839ee86ef1e (diff) | |
computed colors support
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index 7da3688a..ef139e88 100644 --- a/src/App.scss +++ b/src/App.scss @@ -99,6 +99,10 @@ button { &:active { box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3), 0px 1px 0px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.2) inset; box-shadow: var(--buttonPressedShadow); + color: $fallback--text; + color: var(--btnPressedText, $fallback--text); + background-color: $fallback--fg; + background-color: var(--btnPressed, $fallback--fg) } &:disabled { |
