diff --git a/assets/css/main.css b/assets/css/main.css index 67328a9..b3324de 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -76,6 +76,13 @@ overflow: hidden; background: #ffffff; } + + html.admin-settings-document, + body.admin-settings-document { + height: 100%; + overflow: hidden; + background: #f7f8fa; + } } @layer components { @@ -257,3 +264,14 @@ } } + +@layer utilities { + .no-scrollbar { + -ms-overflow-style: none; + scrollbar-width: none; + } + + .no-scrollbar::-webkit-scrollbar { + display: none; + } +} diff --git a/components/admin/AdminNavPrimaryBranch.vue b/components/admin/AdminNavPrimaryBranch.vue deleted file mode 100644 index b50c753..0000000 --- a/components/admin/AdminNavPrimaryBranch.vue +++ /dev/null @@ -1,214 +0,0 @@ - - - diff --git a/components/site/LeftSidebar.vue b/components/site/LeftSidebar.vue index be191e3..fad3244 100644 --- a/components/site/LeftSidebar.vue +++ b/components/site/LeftSidebar.vue @@ -15,7 +15,8 @@ const { data: tags } = await useFetch('/api/tags', { const { data: navigation } = await useFetch('/api/navigation', { default: () => ({ primary: [], - footer: [] + footer: [], + recommended: [] }) }) diff --git a/components/site/RightSidebar.vue b/components/site/RightSidebar.vue index e5e0ae8..db017a1 100644 --- a/components/site/RightSidebar.vue +++ b/components/site/RightSidebar.vue @@ -1,4 +1,6 @@ @@ -159,24 +188,44 @@ const showAboutSection = false -