aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-08-02 14:16:02 +0700
committerShulhan <m.shulhan@gmail.com>2020-01-25 14:13:01 +0700
commit9c44de4783d68819a4a10a0de5fadab90e00e682 (patch)
treeeff01e09d1b5d725e7e14be3b440c39329367de4
parent4a75b74d54363695735896ab5e2f4b62c898bdc0 (diff)
downloadgolang-id-tour-9c44de4783d68819a4a10a0de5fadab90e00e682.tar.xz
[layout] Fix import and syntax checkbox layout on screen width 960px
-rwxr-xr-xstatic/css/app.css11
1 files changed, 11 insertions, 0 deletions
diff --git a/static/css/app.css b/static/css/app.css
index b240013..e72d38b 100755
--- a/static/css/app.css
+++ b/static/css/app.css
@@ -528,3 +528,14 @@ a#run, a#kill {
display: none;
}
}
+@media (max-width: 960px) {
+ #explorer {
+ position: initial;
+ height: auto;
+ }
+ #explorer .imports-checkbox,
+ #explorer .syntax-checkbox {
+ float: none;
+ display: block;
+ }
+}