fix(core): 🐛 add missing layout padding

This commit is contained in:
alistair3149 2022-10-19 16:06:05 -04:00
parent a703726d1e
commit d827c2ea12
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,5 @@
.citizen-footer {
padding-top: var( --space-xl );
padding-bottom: var( --space-xl );
padding: var( --space-xl ) var( --padding-page );
margin-top: var( --space-xl );
// Reserve space for header
margin-bottom: var( --header-size );
@ -116,6 +115,8 @@
@media ( min-width: @width-breakpoint-desktop ) {
.citizen-footer {
padding-right: ~'calc( var(--padding-page ) * 2 )';
padding-left: ~'calc( var(--padding-page ) * 2 )';
margin-bottom: 0;
}

View file

@ -20,6 +20,7 @@
grid-template-areas: 'header'
'content'
'footer';
grid-template-columns: minmax( min-content, var( --width-layout ) );
}
.mw-body-header {