From f4ed3695cc612e944aa7d96ad8d1bdd1929e2773 Mon Sep 17 00:00:00 2001 From: DeathByDenim Date: Mon, 12 Jun 2023 21:14:35 -0400 Subject: [PATCH] More padding for main container --- _layouts/default.html | 2 +- _sass/base.scss | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index e977226..cc8e377 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -12,7 +12,7 @@ {% include nav.html %} -
+
{{ content }}
diff --git a/_sass/base.scss b/_sass/base.scss index ec55b5a..a5e91dd 100644 --- a/_sass/base.scss +++ b/_sass/base.scss @@ -1,5 +1,6 @@ // Custom style matching the brand +// Hack to get onFOSS brand logo somewhat aligned $enable-negative-margins: true; $primary: #43543F; @@ -26,6 +27,15 @@ $table-bg: #3F3F3E; $body-secondary-bg: #C8C8C8; $body-tertiary-bg: #43543F; +// Add larger spacers +@import "bootstrap/functions"; +@import "bootstrap/variables"; +$spacers: map-merge( + $spacers, ( + 6: $spacer * 6, + ) +); + .table a{ color: #81BB27; }