aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2021-02-08 00:32:08 +0100
committerGitHub <noreply@github.com>2021-02-08 00:32:08 +0100
commit891bca54f8ed848d180a716055c21af19046ef71 (patch)
treee3bff5519339280c14086324378ef70362c9b555 /webAO/styles
parent9597d50f00764749636d14c92055c7cfea76ff52 (diff)
parentcbd34433530304845c80d48dbf4c39679eb23e1e (diff)
Merge pull request #78 from craftxbox/patch-1
Stop main game panel from scrolling.
Diffstat (limited to 'webAO/styles')
-rw-r--r--webAO/styles/client.css11
1 files changed, 8 insertions, 3 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css
index 99381ec..b86e188 100644
--- a/webAO/styles/client.css
+++ b/webAO/styles/client.css
@@ -115,11 +115,16 @@
}
#client_icwrapper {
- overflow-x: hidden;
- overflow-y: auto;
+ overflow: hidden;
+ display:flex;
+ flex-flow: column nowrap;
height: 100%;
}
+#client_iccontrols {
+ overflow-y:auto;
+}
+
@keyframes shake {
0%,
@@ -616,4 +621,4 @@
.hrtext:after {
left: 0.5em;
margin-right: -50%;
-} \ No newline at end of file
+}