diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-15 18:15:22 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-15 18:21:55 +0200 |
commit | d2c4023832e26d3fe3f77c9fa8581588ea812cc2 (patch) | |
tree | 6e9b5665d80128597fb078b1f945b2ce349389a8 /scss | |
parent | 519af559f94aab1bd1446cc01144cbf2640fcc6a (diff) | |
download | cerrado-d2c4023832e26d3fe3f77c9fa8581588ea812cc2.tar.gz cerrado-d2c4023832e26d3fe3f77c9fa8581588ea812cc2.tar.bz2 cerrado-d2c4023832e26d3fe3f77c9fa8581588ea812cc2.zip |
fix: Add support lightweight tags
For now all tags are read as reference. That cause tags to not carry its
message body by default but it will be added in the future. For now
simple tags will do.
Diffstat (limited to 'scss')
-rw-r--r-- | scss/main.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scss/main.scss b/scss/main.scss index 5500a38..af8a002 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -58,8 +58,14 @@ $utilities: ( start: left, end: right, center: center, - ) -), + ) + ), + "margin-end": ( + responsive: true, + property: margin-right, + class: me, + values: map-merge($spacers, (auto: auto)) + ), ); @import "bootstrap/scss/utilities/_api.scss"; |