From f5884e0d8afdbde5474d7e6641a843d07e141745 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Mon, 15 Jun 2020 12:36:47 +0000 Subject: [PATCH 1/3] fix dependencies --- src/dependencies.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dependencies.pug b/src/dependencies.pug index 9bd04d4..7aa93ee 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) From 70de29a517269f2ec18060c2d7f8ece164c7c4ff Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Mon, 15 Jun 2020 17:59:05 +0200 Subject: [PATCH 2/3] fix: contact width on about page --- src/styles/base/about.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/base/about.scss b/src/styles/base/about.scss index c7b6230..ead128a 100644 --- a/src/styles/base/about.scss +++ b/src/styles/base/about.scss @@ -44,7 +44,7 @@ cursor: pointer; font-weight: bold; text-transform: uppercase; - width: 25%; + width: 50%; font-size: 1.1rem; align-self: center; padding: 0.5rem 1.5rem; From 30c015be91982d23b8bd96f8c1c3a2ca73596b82 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier Date: Mon, 15 Jun 2020 18:50:10 +0200 Subject: [PATCH 3/3] happy dev sample button color --- client.sample.happy-dev.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client.sample.happy-dev.css b/client.sample.happy-dev.css index 8642cc0..0565062 100644 --- a/client.sample.happy-dev.css +++ b/client.sample.happy-dev.css @@ -216,3 +216,7 @@ border: 1px solid var(--color-complementary); color: var(--color-white); } + +#members-list .send-display sib-link::before { + background-color: var(--color-directory-complementary)!important; +}