From e603b3f87e478bff338faad5ce13bbbcbbc065d7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Sat, 13 Jun 2020 16:33:45 +0200 Subject: [PATCH 1/2] hotfix: variable color --- src/styles/abstracts/_variables.scss | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/styles/abstracts/_variables.scss b/src/styles/abstracts/_variables.scss index d0e928c..13c0135 100644 --- a/src/styles/abstracts/_variables.scss +++ b/src/styles/abstracts/_variables.scss @@ -119,18 +119,12 @@ --color-content-header: var(--color-grey-9); /* directory */ - --color-directory-primary: var(--color-primary); - --color-directory-secondary: var(--color-secondary); - --color-directory-complementary: var(--color-complementary); - --color-directory-complementary-darken: var(--color-complementary-darken); - --color-directory-white: var(--color-white); - --color-directory-black: var(--color-black); - - --color-directory-grey-1: var(--color-grey-7); - --color-directory-grey-2: var(--color-grey-10); - --color-directory-grey-3: var(--color-grey-9); - --color-directory-grey-4: var(--color-grey-4); - --color-directory-grey-5: var(--color-grey-13); + --color-directory-primary: var(--color-primary)!important; + --color-directory-secondary: var(--color-secondary)!important; + --color-directory-complementary: var(--color-complementary)!important; + --color-directory-complementary-darken: var(--color-complementary-darken)!important; + --color-directory-white: var(--color-white)!important; + --color-directory-black: var(--color-black)!important; } /* Variables for event */ From 18c98fa21d1d0e131c2bc026da14f13787c93fa2 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Sat, 13 Jun 2020 17:05:33 +0200 Subject: [PATCH 2/2] fix: directory colors --- src/dependencies.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dependencies.pug b/src/dependencies.pug index 7aa93ee..9bd04d4 100644 --- a/src/dependencies.pug +++ b/src/dependencies.pug @@ -24,8 +24,8 @@ if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers) //- script(type="module" src="/lib/sib-conversation/sib-conversation.js" defer) if (endpoints.uploads || (endpoints.get && endpoints.get.uploads)) && (endpoints.skills || (endpoints.get && endpoints.get.skills)) && (endpoints.users || (endpoints.get && endpoints.get.users)) - script(type="module" src="https://unpkg.com/@startinblox/component-directory@0.4" defer) - //- script(type="module" src="/lib/sib-directory/dist/index.js" defer) + //- script(type="module" src="https://unpkg.com/@startinblox/component-directory@0.4" defer) + script(type="module" src="/lib/sib-directory/dist/index.js" defer) if endpoints.dashboards || (endpoints.get && endpoints.get.dashboards) script(type="module" src="https://unpkg.com/@startinblox/component-dashboard@0.1" defer)