summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app.vue11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/client/app.vue b/src/client/app.vue
index 34c7543ace..f1a8340490 100644
--- a/src/client/app.vue
+++ b/src/client/app.vue
@@ -1043,11 +1043,20 @@ export default Vue.extend({
position: sticky;
height: min-content;
min-height: calc(100vh - #{$header-height});
- overflow: hidden;
+ padding: var(--margin) 0;
+ box-sizing: border-box;
> * {
margin: var(--margin) 0;
width: 300px;
+
+ &:first-child {
+ margin-top: 0;
+ }
+
+ &:last-child {
+ margin-bottom: 0;
+ }
}
}