From aaffaf015a8851818c7b44d377e6c3d58f0251d4 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 7 May 2020 15:42:28 +0200 Subject: [PATCH] Fix room color bug --- client/src/components/page-form/PageForm.vue | 2 ++ client/src/layouts/DefaultLayout.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/client/src/components/page-form/PageForm.vue b/client/src/components/page-form/PageForm.vue index 47f54b19..6f3ba56d 100644 --- a/client/src/components/page-form/PageForm.vue +++ b/client/src/components/page-form/PageForm.vue @@ -37,6 +37,8 @@ } grid-template-rows: 1fr 55px; + margin: $large-spacing 0; + &__page { display: flex; justify-content: center; diff --git a/client/src/layouts/DefaultLayout.vue b/client/src/layouts/DefaultLayout.vue index 15328884..3603a6cd 100644 --- a/client/src/layouts/DefaultLayout.vue +++ b/client/src/layouts/DefaultLayout.vue @@ -33,7 +33,7 @@ }, specialContainerClass() { let cls = this.$store.state.specialContainerClass; - return [cls ? `skillbox--${cls}` : '', {'skillbox--show-filter': this.showFilter}] + return [cls ? `layout--${cls}` : '', {'skillbox--show-filter': this.showFilter}] } } }