From 9f6432453b5532612e31a64f512df23e621153bf Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 16 Aug 2020 20:58:11 -0500 Subject: [PATCH] change all breakpoint responsive font sizes to px (instead of rem), add navbar padding, rename below SM marker to XS properly --- src/App.vue | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/App.vue b/src/App.vue index 537dc14..696436f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -14,7 +14,7 @@ Spirit - SM + XS SM MD LG @@ -48,7 +48,7 @@ - +

Communications

@@ -216,24 +216,30 @@ $grid-breakpoints: ( @import '~bootstrap-vue/src/index.scss'; html { - font-size: 0.8rem; + font-size: 12px; } @include media-breakpoint-up(sm) { html { - font-size: 0.9rem; + font-size: 12px; } } @include media-breakpoint-up(md) { html { - font-size: 1.0rem; + font-size: 14px; } } @include media-breakpoint-up(lg) { html { - font-size: 1.1rem; + font-size: 16px; + } +} + +@include media-breakpoint-up(xl) { + html { + font-size: 18px; } } @@ -257,6 +263,9 @@ abbr { .navbar { @extend .bg-black; + + #content { + margin-top: 2.5em; + } } .jumbotron h1 {