From f6987c72ac5650c6fba156751892f6274a70c000 Mon Sep 17 00:00:00 2001 From: tamaina Date: Thu, 30 Jan 2020 18:32:09 +0900 Subject: [PATCH] Make timeline widget flexible (#5788) --- src/client/app.vue | 2 +- src/client/widgets/timeline.vue | 55 ++++++++++++++++++++++++++++++--- 2 files changed, 51 insertions(+), 6 deletions(-) diff --git a/src/client/app.vue b/src/client/app.vue index b7de458b8..a0265951c 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -924,7 +924,7 @@ export default Vue.extend({ > div { position: sticky; top: calc(#{$header-height} + var(--margin)); - height: calc(100vh - #{$header-height} - var(--margin)); + height: calc(100vh - #{$header-height} - var(--margin) * 2); &.edit { overflow: auto; diff --git a/src/client/widgets/timeline.vue b/src/client/widgets/timeline.vue index 5a22a0c1a..22a9dd15c 100644 --- a/src/client/widgets/timeline.vue +++ b/src/client/widgets/timeline.vue @@ -1,6 +1,6 @@