diff --git a/dashboard/src/components/Expandable.vue b/dashboard/src/components/Expandable.vue index c9f6b38b..4728570c 100644 --- a/dashboard/src/components/Expandable.vue +++ b/dashboard/src/components/Expandable.vue @@ -1,6 +1,13 @@ diff --git a/dashboard/src/routes.ts b/dashboard/src/routes.ts index 1ca49ee8..f453720e 100644 --- a/dashboard/src/routes.ts +++ b/dashboard/src/routes.ts @@ -24,15 +24,15 @@ export const router = new VueRouter({ component: () => import("./components/docs/Introduction.vue"), }, { - path: "configuration-format", + path: "configuration/configuration-format", component: () => import("./components/docs/ConfigurationFormat.vue"), }, { - path: "permissions", + path: "configuration/permissions", component: () => import("./components/docs/Permissions.vue"), }, { - path: "plugin-configuration", + path: "configuration/plugin-configuration", component: () => import("./components/docs/PluginConfiguration.vue"), }, { diff --git a/dashboard/src/style/content.pcss b/dashboard/src/style/content.pcss index d359c20c..3709ad7a 100644 --- a/dashboard/src/style/content.pcss +++ b/dashboard/src/style/content.pcss @@ -23,7 +23,8 @@ @apply mb-4; } - & a:not([class]) { + & a:not([class]), + & a[class=""] { @apply link; } @@ -36,6 +37,15 @@ } } + & ol:not([class]) { + @apply list-decimal; + @apply mb-4; + + & li { + @apply ml-6; + } + } + & code:not([class]) { @apply inline-code; } @@ -44,3 +54,12 @@ max-width: 600px; } } + +@screen xl { + .main-content { + & a:not([class]), + & a[class=""] { + white-space: nowrap; + } + } +}