diff options
author | 0neGal <mail@0negal.com> | 2021-12-30 19:19:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-30 19:19:16 +0100 |
commit | d2e72c40b251373fd662cab426fc04dcac1eb65a (patch) | |
tree | 6a85ad219a06c9814f00cd15d96d1171b997f623 /src/app/main.css | |
parent | 4a0ce8d918007a3ed39bd15c28fc1c7931080271 (diff) | |
parent | 9d8ceea77b6f172f0c055c0061bc07e6f45c0d2d (diff) | |
download | Viper-d2e72c40b251373fd662cab426fc04dcac1eb65a.tar.gz Viper-d2e72c40b251373fd662cab426fc04dcac1eb65a.zip |
Merge branch 'main' into feat/version-indicator
Diffstat (limited to 'src/app/main.css')
-rw-r--r-- | src/app/main.css | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/app/main.css b/src/app/main.css index cd6c001..aa36c5b 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -1,4 +1,5 @@ :root { + --disabled: #656E7F; --background: #4C515B; --foreground: #DDE2EB; --subforeground: #AFAFAF; @@ -31,6 +32,12 @@ body, button, input { nobr {white-space: nowrap} +.versions { + height: 15px; + font-size: 12px; + color: var(--subforeground); +} + .line { display: flex; margin-top: 15px; @@ -65,13 +72,9 @@ button:active { transform: scale(0.95); } + #update {background: #81A1C1} #setpath {background: #5E81AC} #northstar {background: #C7777F} #vanilla, #exit {background: #656E7F} - -.versions { - height: 15px; - font-size: 12px; - color: var(--subforeground); -} +button:disabled {background: var(--disabled) !important; opacity: 0.5}
\ No newline at end of file |