aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/MainLayout.vue
diff options
context:
space:
mode:
authorZero~Informatique2020-01-31 06:55:37 +0100
committerZero~Informatique2020-01-31 06:55:37 +0100
commit914aa63cb65f869be9b1707c160847be16f79a68 (patch)
tree9a180ff39dccaec17c6c111931aee1bbf04eaf0a /viewer/src/views/MainLayout.vue
parent252dd6fc6f53ecd8b28e05a0514429472d53d08e (diff)
downloadldgallery-914aa63cb65f869be9b1707c160847be16f79a68.tar.gz
viewer: unified CSS classes to kebab case
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r--viewer/src/views/MainLayout.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index c202def..78d8a8a 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -18,7 +18,7 @@
18--> 18-->
19 19
20<template> 20<template>
21 <div :class="{fullscreen: $uiStore.fullscreen, fullWidth: $uiStore.fullWidth}"> 21 <div :class="{'fullscreen': $uiStore.fullscreen, 'fullwidth': $uiStore.fullWidth}">
22 <panel-top v-if="!isLoading" class="layout layout-top" /> 22 <panel-top v-if="!isLoading" class="layout layout-top" />
23 <panel-left v-if="!isLoading" class="layout layout-left" /> 23 <panel-left v-if="!isLoading" class="layout layout-left" />
24 <router-view v-if="!isLoading" class="layout layout-content scrollbar" /> 24 <router-view v-if="!isLoading" class="layout layout-content scrollbar" />
@@ -99,9 +99,9 @@ html {
99} 99}
100.fullscreen { 100.fullscreen {
101 --layout-top: 0px; 101 --layout-top: 0px;
102 @extend .fullWidth; 102 @extend .fullwidth;
103} 103}
104.fullWidth { 104.fullwidth {
105 --layout-left: 0px; 105 --layout-left: 0px;
106 .layout { 106 .layout {
107 &.layout-left { 107 &.layout-left {