Grid center wide to match old style

This commit is contained in:
Emilia Allison 2022-09-29 23:33:57 -04:00
parent 32c169e957
commit f13aa49e61
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
3 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<body> <body>
<div id="overlay"> <div id="overlay">
</div> </div>
<main class="grid-center--offset"> <main class="grid-center--offset-wide">
<div> <div>
<div class="content"> <div class="content">
<h1> <h1>

View File

@ -8,7 +8,7 @@
<body> <body>
<div id="overlay"> <div id="overlay">
</div> </div>
<main class="grid-center--offset"> <main class="grid-center--offset-wide">
<div> <div>
<h1> <h1>
Cool Stuff Cool Stuff

View File

@ -81,6 +81,10 @@ $color-dark: hsl(195, 47%, 7%);
@include grid-center($top-offset: 0.7); @include grid-center($top-offset: 0.7);
} }
.grid-center--offset-wide {
@include grid-center($top-offset: 0.7, $left-offset: 0.5, $right-offset: 0.5);
}
.fixed { .fixed {
position: fixed; position: fixed;
} }