diff options
author | 0neGal <mail@0negal.com> | 2021-12-27 03:04:03 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2021-12-27 03:06:02 +0100 |
commit | 8dcc759cf4a5af32c25dc7ad26ffb2c6c258a7ef (patch) | |
tree | 4b8aab612886bf41cfb749f887ef192feebde944 /src/app/main.css | |
parent | fa94f92e15b5e1e7fe2bcdeb4d74b153cc47c133 (diff) | |
download | Viper-8dcc759cf4a5af32c25dc7ad26ffb2c6c258a7ef.tar.gz Viper-8dcc759cf4a5af32c25dc7ad26ffb2c6c258a7ef.zip |
made the app prettier on windows
I removed the titlebar, which I already had gone on my Linux system,
besides that I also made it so the body of Viper can be held down to
drag it around. And then added an exit button.
Diffstat (limited to 'src/app/main.css')
-rw-r--r-- | src/app/main.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/main.css b/src/app/main.css index 1de3eea..4578f87 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -7,6 +7,7 @@ body, button, input { font-size: 18px; font-weight: 700; overflow: hidden; + -webkit-app-region: drag; color: var(--foreground); text-transform: uppercase; background: var(--background); @@ -31,6 +32,8 @@ button, .text { transition: 0.2s ease-in-out; } +button {-webkit-app-region: no-drag;} + button:hover {opacity: 0.9} button:active { opacity: 0.7; @@ -39,5 +42,5 @@ button:active { #update {background: #81A1C1} #setpath {background: #5E81AC} -#vanilla {background: #656E7F} #northstar {background: #C7777F} +#vanilla, #exit {background: #656E7F} |