From dbb7155114ef0fc07a762e04e0bf82881b45db2e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Thu, 24 Nov 2022 16:43:33 +0100 Subject: [PATCH] Globally change body color --- app/webpacker/css/admin/v2/main.scss | 1 + app/webpacker/css/admin/v2/shared/typography.scss | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 app/webpacker/css/admin/v2/shared/typography.scss diff --git a/app/webpacker/css/admin/v2/main.scss b/app/webpacker/css/admin/v2/main.scss index 16c8b4370e..5059c55c00 100644 --- a/app/webpacker/css/admin/v2/main.scss +++ b/app/webpacker/css/admin/v2/main.scss @@ -1,4 +1,5 @@ @import "variables.scss"; +@import "shared/typography.scss"; body.admin.admin-v2 { @import "navigation.scss"; diff --git a/app/webpacker/css/admin/v2/shared/typography.scss b/app/webpacker/css/admin/v2/shared/typography.scss new file mode 100644 index 0000000000..216287e63c --- /dev/null +++ b/app/webpacker/css/admin/v2/shared/typography.scss @@ -0,0 +1,5 @@ +// Overide app/webpacker/css/admin/shared/typography.scss + +body.admin.admin-v2 { + color: $v2-medium-grey; +}