diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-09 20:07:00 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-09 20:07:00 +0200 |
commit | 2fcc394c53f995750b52ad06153041f61f0a0c55 (patch) | |
tree | 6828a8e2520fdf27611efb33509f3cc745de68d4 /scss | |
parent | 02614b3781f6acdfc6df0e7b07d856b2779c4ac7 (diff) | |
download | cerrado-2fcc394c53f995750b52ad06153041f61f0a0c55.tar.gz cerrado-2fcc394c53f995750b52ad06153041f61f0a0c55.tar.bz2 cerrado-2fcc394c53f995750b52ad06153041f61f0a0c55.zip |
feat: Add global reference to ref and name
Diffstat (limited to '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"; |