2026-04-22 21:11:18 +02:00
|
|
|
@import '../../tokens.less';
|
|
|
|
|
|
2025-09-29 20:36:56 +02:00
|
|
|
.fredyFooter {
|
2026-04-22 21:11:18 +02:00
|
|
|
background-color: @color-base;
|
|
|
|
|
border-top: 1px solid @color-border;
|
2025-09-29 20:36:56 +02:00
|
|
|
display: flex;
|
2026-04-22 21:11:18 +02:00
|
|
|
justify-content: space-between;
|
2025-09-29 20:36:56 +02:00
|
|
|
align-items: center;
|
2026-04-22 21:11:18 +02:00
|
|
|
padding: 10px 24px;
|
|
|
|
|
height: 36px;
|
2026-01-28 14:27:03 +01:00
|
|
|
flex-shrink: 0;
|
2026-04-22 21:11:18 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-29 20:36:56 +02:00
|
|
|
}
|