Use clamping to help with responsive font size.

This commit is contained in:
g_it 2026-02-19 00:56:28 +01:00
commit 8ba8d480ce
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
6 changed files with 70 additions and 46 deletions

View file

@ -175,15 +175,25 @@ body {
/* Footer */
footer {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 5px;
padding-bottom: 0;
}
.logo {
text-align: center;
footer>*:not(:last-child)::after {
content: " | ";
margin: 0 8px;
img {
height: 25px;
}
}
.tcs {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 5px;
padding-bottom: 0;
&>*:not(:last-child)::after {
content: " | ";
margin: 0 8px;
}
}
}