diff options
Diffstat (limited to 'theme/sass/_base.scss')
-rw-r--r-- | theme/sass/_base.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/theme/sass/_base.scss b/theme/sass/_base.scss index 6490ef8..d8b9554 100644 --- a/theme/sass/_base.scss +++ b/theme/sass/_base.scss | |||
@@ -16,17 +16,25 @@ | |||
16 | -o-font-smoothing: $val; | 16 | -o-font-smoothing: $val; |
17 | } | 17 | } |
18 | 18 | ||
19 | @mixin flexcenter { | 19 | @mixin flexbox { |
20 | display: -webkit-box !important; | 20 | display: -webkit-box !important; |
21 | display: -moz-box !important; | 21 | display: -moz-box !important; |
22 | display: -ms-box !important; | 22 | display: -ms-box !important; |
23 | display: -o-box !important; | 23 | display: -o-box !important; |
24 | display: box !important; | 24 | display: box !important; |
25 | } | ||
26 | |||
27 | @mixin flex-center-center { | ||
25 | @include box-orient(vertical); | 28 | @include box-orient(vertical); |
26 | @include box-align(center); | 29 | @include box-align(center); |
27 | @include box-pack(center); | 30 | @include box-pack(center); |
28 | } | 31 | } |
29 | 32 | ||
33 | @mixin flex-left-center { | ||
34 | @include box-orient(vertical); | ||
35 | @include box-align(left); | ||
36 | @include box-pack(center); | ||
37 | } | ||
30 | 38 | ||
31 | /** | 39 | /** |
32 | * Base SlideDeck Styles | 40 | * Base SlideDeck Styles |