diff --git a/docusaurus.config.js b/docusaurus.config.js index f5c67e9..19900be 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -138,12 +138,7 @@ const config = { footer: { copyright: ` `, logo: { diff --git a/src/components/Header/styles.module.scss b/src/components/Header/styles.module.scss index 524ff9d..39f31ed 100644 --- a/src/components/Header/styles.module.scss +++ b/src/components/Header/styles.module.scss @@ -51,6 +51,10 @@ line-height: 1rem; padding: 0.25rem; margin: 0; + + a { + color: primary-color("light"); + } } &--subtitle { diff --git a/src/styles/footer.scss b/src/styles/footer.scss index 57dc6dd..8bf0b16 100644 --- a/src/styles/footer.scss +++ b/src/styles/footer.scss @@ -12,7 +12,7 @@ color: text-color("dark"); margin: 0; - a { + &--link { color: primary-color("light"); } } diff --git a/src/styles/global.scss b/src/styles/global.scss index 6c59dc4..98addf4 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -1,3 +1,5 @@ +@import "./functions"; + @font-face { font-family: 'AnonymousPro'; font-style: normal; @@ -62,3 +64,12 @@ --kb-sub-text-color: #718096; --kb-text-color: rgba(255, 255, 255, 0.92); } + +/* overrides */ +.footer { + &__link-item { + &:hover { + color: primary-color("light"); + } + } +}