aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/assets/scss/buefy.scss
diff options
context:
space:
mode:
authorZero~Informatique2019-12-20 17:47:04 +0100
committerZero~Informatique2019-12-20 23:22:56 +0100
commit7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f (patch)
treecb5e30534d9e564c311d626bba7e8d9ec0ea0f60 /viewer/src/assets/scss/buefy.scss
parentc9264b0a0a7e1cb92ef7d9a391cee2c94376cff3 (diff)
downloadldgallery-7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f.tar.gz
Viewer project foundations
Diffstat (limited to 'viewer/src/assets/scss/buefy.scss')
-rw-r--r--viewer/src/assets/scss/buefy.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/viewer/src/assets/scss/buefy.scss b/viewer/src/assets/scss/buefy.scss
new file mode 100644
index 0000000..5249899
--- /dev/null
+++ b/viewer/src/assets/scss/buefy.scss
@@ -0,0 +1,37 @@
1@import "~bulma/sass/utilities/initial-variables";
2@import "~bulma/sass/utilities/functions";
3// 1. Set your own initial variables and derived
4// variables in _variables.scss
5@import "buefy_variables";
6
7// 2. Setup your Custom Colors
8$linkedin: #0077b5;
9$linkedin-invert: findColorInvert($linkedin);
10$twitter: #55acee;
11$twitter-invert: findColorInvert($twitter);
12$github: #333;
13$github-invert: findColorInvert($github);
14
15@import "~bulma/sass/utilities/derived-variables";
16
17// 3. Add new color variables to the color map.
18$addColors: (
19 "twitter": (
20 $twitter,
21 $twitter-invert
22 ),
23 "linkedin": (
24 $linkedin,
25 $linkedin-invert
26 ),
27 "github": (
28 $github,
29 $github-invert
30 )
31);
32$colors: map-merge($colors, $addColors);
33
34@import "~bulma";
35@import "~buefy/src/scss/buefy";
36
37// 4. Provide custom buefy overrides and site styles here