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}] } } }