Don't tweak padding, tweak max-width

This commit is contained in:
DeathByDenim 2023-06-13 07:13:49 -04:00
parent f4ed3695cc
commit 9d5a0ddcda
Signed by: DeathByDenim
GPG Key ID: 4A475283D925365B
2 changed files with 6 additions and 5 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-6">
<div class="container flex-grow-1 flex-fill bg-body-secondary p-4">
{{ content }}
</div>

View File

@ -27,12 +27,13 @@ $table-bg: #3F3F3E;
$body-secondary-bg: #C8C8C8;
$body-tertiary-bg: #43543F;
// Add larger spacers
// Limit the large containers
@import "bootstrap/functions";
@import "bootstrap/variables";
$spacers: map-merge(
$spacers, (
6: $spacer * 6,
$container-max-widths: map-merge(
$container-max-widths, (
xl: 1000px,
xxl: 1000px
)
);