From dc251fffc2998f1cf4f8e9631928c4b92ac0d90e Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sun, 22 Dec 2019 07:40:55 +0100 Subject: viewer: Implemented the search by tags. Pushed the special urls to ENV. --- viewer/src/assets/scss/buefy.scss | 24 ++++++++---------------- viewer/src/assets/scss/global.scss | 11 +++++++++++ 2 files changed, 19 insertions(+), 16 deletions(-) (limited to 'viewer/src/assets/scss') diff --git a/viewer/src/assets/scss/buefy.scss b/viewer/src/assets/scss/buefy.scss index 5249899..b018fd3 100644 --- a/viewer/src/assets/scss/buefy.scss +++ b/viewer/src/assets/scss/buefy.scss @@ -5,28 +5,20 @@ @import "buefy_variables"; // 2. Setup your Custom Colors -$linkedin: #0077b5; -$linkedin-invert: findColorInvert($linkedin); -$twitter: #55acee; -$twitter-invert: findColorInvert($twitter); -$github: #333; -$github-invert: findColorInvert($github); +// $linkedin: #0077b5; +// $linkedin-invert: findColorInvert($linkedin); @import "~bulma/sass/utilities/derived-variables"; // 3. Add new color variables to the color map. $addColors: ( - "twitter": ( - $twitter, - $twitter-invert + "green": ( + $green, + $green-invert ), - "linkedin": ( - $linkedin, - $linkedin-invert - ), - "github": ( - $github, - $github-invert + "purple": ( + $purple, + $purple-invert ) ); $colors: map-merge($colors, $addColors); diff --git a/viewer/src/assets/scss/global.scss b/viewer/src/assets/scss/global.scss index 0bfeab9..5d12976 100644 --- a/viewer/src/assets/scss/global.scss +++ b/viewer/src/assets/scss/global.scss @@ -12,3 +12,14 @@ .nowrap { white-space: nowrap; } + +.flex { + display: flex; +} +.flex-column { + display: flex; + flex-direction: column; +} +.flex-center { + align-items: center; +} -- cgit v1.2.3