mediawiki-skins-Citizen/resources/skins.citizen.styles/components/PageFooter.less
alistair3149 2f7ae8fc1d
fix(stickyHeader): 🐛 use margin and padding instead of grid gap for body spacing
That should address the flickering issue caused by the sticky header
2024-07-02 19:26:50 -04:00

28 lines
488 B
Plaintext

.citizen-page-footer {
display: flex;
flex-direction: column;
grid-area: footer;
gap: var( --space-xl );
padding-top: var( --space-md );
margin-top: var( --space-md );
line-height: var( --line-height-sm );
}
.page-info {
display: flex;
flex-wrap: wrap;
gap: var( --space-xl );
font-size: var( --font-size-x-small );
&__item {
display: flex;
flex-direction: column;
gap: var( --space-xs );
}
&__label {
color: var( --color-subtle );
letter-spacing: 0.05em;
}
}