mediawiki-skins-Citizen/resources/skins.citizen.styles/components/PageFooter.less
alistair3149 90862b193e
feat(tokens): deprecate old line height variables
Old variables are being deprecated to align naming convention with Codex.
They will be hard-deprecated on the next major Citizen version.
2024-10-23 17:33:46 -04:00

28 lines
494 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-xx-small );
}
.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;
}
}