diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-16 19:31:48 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-16 19:31:48 +0200 |
commit | 969b7600a86185187cd17d45bd252143db4a6728 (patch) | |
tree | c4d625c9b1a1fa5584e70f02f02f5cd077fb94c9 /scss | |
parent | a98acb9c8b86a2c2f35841c86d3c3f1d7c176b61 (diff) | |
download | lens-969b7600a86185187cd17d45bd252143db4a6728.tar.gz lens-969b7600a86185187cd17d45bd252143db4a6728.tar.bz2 lens-969b7600a86185187cd17d45bd252143db4a6728.zip |
ref: Some typography tweaks
Diffstat (limited to 'scss')
-rw-r--r-- | scss/main.scss | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/scss/main.scss b/scss/main.scss index 89d2096..addae37 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -1,4 +1,4 @@ -$breakpoint: 520px; +$breakpoint: 360px; $tablet: $breakpoint; $body-font-size: 1rem; @@ -18,6 +18,11 @@ $card-content-padding: 0; $table-cell-padding: 0.5em; $table-cell-border-width: 0; +$tag-radius: 0; +$tag-delete-margin: 15px; + +$title-weight: normal; + @import "bulma/sass/base/_all.sass"; @import "bulma/sass/utilities/_all.sass"; @import "bulma/sass/grid/_all.sass"; @@ -28,7 +33,8 @@ $table-cell-border-width: 0; @import "bulma/sass/elements/_all.sass"; body { - font-family: $family-primary + font-family: $family-primary; + padding-bottom: 10px; } .input, .button{ @@ -85,3 +91,12 @@ th { .img { object-fit: cover; } + +// exting size +.text-size-1{ + @extend .is-size-4 !optional; +} + +.text-size-2{ + @extend .is-size-5 !optional; +} |