diff options
Diffstat (limited to 'scss')
-rw-r--r-- | scss/main.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scss/main.scss b/scss/main.scss index 26155a6..5500a38 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -21,6 +21,10 @@ $headings-margin-bottom: 0; @import "bootstrap/scss/_grid.scss"; @import "tree.scss"; +// TODO remove once is not needed +$alert-border-radius: 0; +@import "bootstrap/scss/_alert.scss"; + // overwrite to reduce the ammount of css generated by loading all utilities $utilities: ( "order": ( @@ -46,6 +50,16 @@ $utilities: ( none: none, ) ), + "text-align": ( + responsive: true, + property: text-align, + class: text, + values: ( + start: left, + end: right, + center: center, + ) +), ); @import "bootstrap/scss/utilities/_api.scss"; |