diff --git a/src/components/FluxNote.vue b/src/components/FluxNote.vue index 0c5e69b..6a232ec 100644 --- a/src/components/FluxNote.vue +++ b/src/components/FluxNote.vue @@ -168,7 +168,7 @@ $header-height: 40px; flex-wrap: wrap; .note { - width: 100%; + width: 100vw; } } } diff --git a/src/components/StackedNote.vue b/src/components/StackedNote.vue index ebdc33c..a9f587a 100644 --- a/src/components/StackedNote.vue +++ b/src/components/StackedNote.vue @@ -12,7 +12,7 @@ {{ title }} -
+
@@ -105,6 +105,13 @@ $border-color: rgba(18, 19, 58, 0.2); section { padding: 1rem 0 2rem; + overflow-x: auto; + } + + .note-content { + .table { + overflow-x: auto; + } } } } diff --git a/src/hooks/useMarkdown.hook.ts b/src/hooks/useMarkdown.hook.ts index 38eabf6..7988974 100644 --- a/src/hooks/useMarkdown.hook.ts +++ b/src/hooks/useMarkdown.hook.ts @@ -11,7 +11,7 @@ const md = new MarkdownIt({ h4: ['title', 'is-5'], h5: ['title', 'is-6'], h6: ['title', 'is-6'], - table: ['table', 'is-striped', 'is-hoverable', 'is-fullwidth'] + table: ['table', 'is-striped', 'is-hoverable'] }) export const useMarkdown = () => {