diff options
Diffstat (limited to 'scss/main.scss')
-rw-r--r-- | scss/main.scss | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/scss/main.scss b/scss/main.scss index b3ba649..26155a6 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -23,20 +23,29 @@ $headings-margin-bottom: 0; // overwrite to reduce the ammount of css generated by loading all utilities $utilities: ( - "order": ( - responsive: true, - property: order, - values: ( - first: -1, - 0: 0, - 1: 1, - 2: 2, - 3: 3, - 4: 4, - 5: 5, - last: 6, - ), + "order": ( + responsive: true, + property: order, + values: ( + first: -1, + 0: 0, + 1: 1, + 2: 2, + 3: 3, + 4: 4, + 5: 5, + last: 6, ), + ), + "float": ( + responsive: true, + property: float, + values: ( + start: left, + end: right, + none: none, + ) + ), ); @import "bootstrap/scss/utilities/_api.scss"; |