From 42af186ce0e30f3a4e22944d2a834c73027f5697 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 26 Mar 2025 00:03:55 +0100 Subject: [PATCH] Use landing page background colors on other pages (#310) Co-authored-by: mahula --- docs/.vuepress/styles/index.scss | 4 ++++ docs/.vuepress/styles/palette.scss | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 docs/.vuepress/styles/palette.scss diff --git a/docs/.vuepress/styles/index.scss b/docs/.vuepress/styles/index.scss index 10cab3e..56ccd08 100644 --- a/docs/.vuepress/styles/index.scss +++ b/docs/.vuepress/styles/index.scss @@ -8,6 +8,10 @@ --highlight-color-light: #a5e3f7; } +#app { + --navbar-c-bg: transparent; +} + h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif !important; } diff --git a/docs/.vuepress/styles/palette.scss b/docs/.vuepress/styles/palette.scss new file mode 100644 index 0000000..cfacb72 --- /dev/null +++ b/docs/.vuepress/styles/palette.scss @@ -0,0 +1,4 @@ +$vp-c-bg: ( + light: #fff, + dark: #101828, +);