diff --git a/src/components/editor/preview.vue b/src/components/editor/preview.vue index 3c25185f..83ea530a 100644 --- a/src/components/editor/preview.vue +++ b/src/components/editor/preview.vue @@ -9,7 +9,9 @@
- {{ config.title }} +
+ {{ config.title }} +
@@ -142,5 +144,15 @@ $font-list: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; .prose a:not([panel])::after { content: url('../../assets/popout.svg'); } + + .w-mobile-full { + width: 80%; + } +} + +@media screen and (max-width: 640px) { + .w-mobile-full { + width: 100% !important; + } } diff --git a/src/components/story/story.vue b/src/components/story/story.vue index 89b1a747..cb33a3c6 100644 --- a/src/components/story/story.vue +++ b/src/components/story/story.vue @@ -25,7 +25,7 @@ :slides="config.slides" :lang="lang" /> -
+
{{ config.title }}
@@ -180,11 +180,18 @@ $font-list: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; .prose a:not([panel])::after { content: url('../../assets/popout.svg'); } + + .w-mobile-full { + width: 80%; + } } @media screen and (min-width: 640px) { .mobile-menu { display: none !important; } + .w-mobile-full { + width: 100% !important; + } }