diff options
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/_mixins.scss | 6 | ||||
-rw-r--r-- | client/src/sass/_variables.scss | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/client/src/sass/_mixins.scss b/client/src/sass/_mixins.scss new file mode 100644 index 000000000..681657d90 --- /dev/null +++ b/client/src/sass/_mixins.scss | |||
@@ -0,0 +1,6 @@ | |||
1 | @mixin disable-default-a-behaviour { | ||
2 | &:hover, &:focus { | ||
3 | text-decoration: none !important; | ||
4 | outline: none !important; | ||
5 | } | ||
6 | } | ||
diff --git a/client/src/sass/_variables.scss b/client/src/sass/_variables.scss index 640746722..e32b37462 100644 --- a/client/src/sass/_variables.scss +++ b/client/src/sass/_variables.scss | |||
@@ -10,12 +10,14 @@ $grey-background: #f6f2f2; | |||
10 | 10 | ||
11 | $button-height: 30px; | 11 | $button-height: 30px; |
12 | 12 | ||
13 | $menu-color: #fff; | ||
14 | $menu-width: 240px; | ||
15 | |||
16 | $header-height: 50px; | 13 | $header-height: 50px; |
17 | $header-border-color: #e9eff6; | 14 | $header-border-color: #e9eff6; |
18 | 15 | ||
16 | $search-input-width: 375px; | ||
17 | |||
18 | $menu-color: #fff; | ||
19 | $menu-width: 240px; | ||
20 | |||
19 | $footer-height: 30px; | 21 | $footer-height: 30px; |
20 | $footer-margin: 30px; | 22 | $footer-margin: 30px; |
21 | 23 | ||