From 7f1b6c06b6ccec7f61adb8d20d32731da67f644f Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Mon, 12 Sep 2022 21:55:16 +0200 Subject: add toc sidebar to docs site --- web/pw-server/src/styles/buttons.scss | 6 ++++-- web/pw-server/src/styles/variables.scss | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'web/pw-server/src/styles') diff --git a/web/pw-server/src/styles/buttons.scss b/web/pw-server/src/styles/buttons.scss index b485014..c72d9dc 100644 --- a/web/pw-server/src/styles/buttons.scss +++ b/web/pw-server/src/styles/buttons.scss @@ -1,5 +1,7 @@ -$btn-text-color: rgb(9, 105, 218); -$btn-border-color: rgba(27, 31, 36, 0.25); +@use "./variables"; + +$btn-text-color: variables.$blue-primary; +$btn-border-color: variables.$light-grey; .btn { color: $btn-text-color; diff --git a/web/pw-server/src/styles/variables.scss b/web/pw-server/src/styles/variables.scss index 257a67e..603db66 100644 --- a/web/pw-server/src/styles/variables.scss +++ b/web/pw-server/src/styles/variables.scss @@ -1 +1,3 @@ $bg-color: rgb(41, 41, 41); +$light-grey: rgba(27, 31, 36, 0.25); +$blue-primary: rgb(9, 105, 218); -- cgit v1.2.3