diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-17 21:38:27 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-17 21:38:27 +0200 |
commit | d2a9e162352646e7f1550823c3d88496590f8760 (patch) | |
tree | f1dfe1f93e8d943443239d804569ec8ca7beb9f8 /scss | |
parent | 969b7600a86185187cd17d45bd252143db4a6728 (diff) | |
download | lens-d2a9e162352646e7f1550823c3d88496590f8760.tar.gz lens-d2a9e162352646e7f1550823c3d88496590f8760.tar.bz2 lens-d2a9e162352646e7f1550823c3d88496590f8760.zip |
ref: Update mosaic to remove empty spaces
Diffstat (limited to 'scss')
-rw-r--r-- | scss/main.scss | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/scss/main.scss b/scss/main.scss index addae37..8220af6 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -1,9 +1,9 @@ $breakpoint: 360px; -$tablet: $breakpoint; +$tablet: 480px; $body-font-size: 1rem; $radius-rounded: 0; -$container-max-width: 920px; +$container-max-width: 1080px; $navbar-breakpoint: $breakpoint; @@ -34,15 +34,16 @@ $title-weight: normal; body { font-family: $family-primary; - padding-bottom: 10px; } .input, .button{ border-radius: 0; } + .wide-column { width: 100%; } + .is-mono { font-family: monospace; } @@ -71,17 +72,17 @@ a.is-danger { .card-image { - margin: 5px; + padding: 5px; } .image.is-fit { height: auto; - width: 130px; + width: 100%; +} - @include until($breakpoint) { - width: auto; - } +.column { + padding: 0; } th { |