More padding for main container

This commit is contained in:
DeathByDenim 2023-06-12 21:14:35 -04:00
parent db7e03c103
commit f4ed3695cc
Signed by: DeathByDenim
GPG Key ID: 4A475283D925365B
2 changed files with 11 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<body class="d-flex flex-column h-100">
{% include nav.html %}
<div class="container flex-grow-1 flex-fill bg-body-secondary p-5">
<div class="container flex-grow-1 flex-fill bg-body-secondary p-6">
{{ content }}
</div>

View File

@ -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;
}