mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 14:57:31 +00:00
03da361b97
- Refactor existing template data-related partials into CitizenComponent components - Re-implement user menu header as UserInfo - Add description text for anon and temp user in UserMenu --------- Co-authored-by: github-actions <github-actions@users.noreply.github.com>
27 lines
461 B
Plaintext
27 lines
461 B
Plaintext
.citizen-page-footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-area: footer;
|
|
gap: var( --space-xl );
|
|
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-base--subtle );
|
|
letter-spacing: 0.05em;
|
|
}
|
|
}
|