diff options
author | 0neGal <mail@0negal.com> | 2022-02-08 17:27:52 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-02-08 17:27:52 +0100 |
commit | d55f84536814238d8ea79acdae47dbdf269953f1 (patch) | |
tree | 7110f8abd1657faac1ecbcb02df1815b87f58160 | |
parent | dbe50019e760d78e2f0749fd32ed1abbac739936 (diff) | |
download | Viper-d55f84536814238d8ea79acdae47dbdf269953f1.tar.gz Viper-d55f84536814238d8ea79acdae47dbdf269953f1.zip |
fixed window buttons not able to be clicked
Also fixes section buttons not being able to be clicked.
-rw-r--r-- | src/app/main.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/main.css b/src/app/main.css index de9a50e..94ef767 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -323,7 +323,7 @@ img {pointer-events: none} } .contentContainer { - width: 90%; + width: 85%; color: white; flex-grow: 1; opacity: 1.0; @@ -561,18 +561,18 @@ code { /* drag control */ #bgHolder, -.mainContainer, +.contentContainer, .gamesContainer { user-select: none; -webkit-app-region: drag; } #overlay.shown ~ #bgHolder, -#overlay.shown ~ .mainContainer, +#overlay.shown ~ .contentContainer, #overlay.shown ~ .gamesContainer { -webkit-app-region: no-drag; } -a, button, .contentMenu li, #close, #nsRelease, #vpReleaseNotes, .mod, #overlay, #modsdiv { +a, button, #close, #nsRelease, #vpReleaseNotes, .mod, #overlay, #modsdiv, #winbtns, .contentMenu { -webkit-app-region: no-drag; } |