summaryrefslogtreecommitdiff
path: root/src/client/app.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-03-20 18:11:39 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-03-20 18:11:39 +0900
commitf31c94e2ea43fa36d2a0fc8742e0a52a0025b643 (patch)
treee48e372ddaac8514cada36f165bf921f313971a4 /src/client/app.vue
parentFix bug (diff)
downloadsharkey-f31c94e2ea43fa36d2a0fc8742e0a52a0025b643.tar.gz
sharkey-f31c94e2ea43fa36d2a0fc8742e0a52a0025b643.tar.bz2
sharkey-f31c94e2ea43fa36d2a0fc8742e0a52a0025b643.zip
wip
Diffstat (limited to 'src/client/app.vue')
-rw-r--r--src/client/app.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/app.vue b/src/client/app.vue
index 48df0b9aa8..df571f824b 100644
--- a/src/client/app.vue
+++ b/src/client/app.vue
@@ -975,17 +975,18 @@ export default Vue.extend({
> main {
width: $main-width;
min-width: $main-width;
+ box-shadow: 1px 0 0 0 var(--shadow), -1px 0 0 0 var(--shadow);
@media (max-width: $side-hide-threshold) {
min-width: 0;
}
> .content {
- padding: 16px;
+ padding: 16px 0;
box-sizing: border-box;
@media (max-width: 500px) {
- padding: 8px;
+ padding: 8px 0;
}
}
@@ -1023,6 +1024,7 @@ export default Vue.extend({
> .widgets {
box-sizing: border-box;
+ margin-left: var(--margin);
@media (max-width: $side-hide-threshold) {
display: none;