Files
fredy/ui/src/components/footer/FredyFooter.less
Christian Kellner f30ec4645c feat: Fredy UI redesign
* New design :)
2026-04-22 21:11:18 +02:00

34 lines
608 B
Plaintext

@import '../../tokens.less';
.fredyFooter {
background-color: @color-base;
border-top: 1px solid @color-border;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 24px;
height: 36px;
flex-shrink: 0;
box-sizing: border-box;
&__version {
font-size: @text-xs;
color: @color-faint;
font-family: @font-mono;
}
&__credit {
font-size: @text-xs;
color: @color-faint;
a {
color: @color-muted;
text-decoration: none;
transition: color @transition-fast;
&:hover {
color: @color-text;
}
}
}
}