diff options
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; +} |