2022-12-29 19:14:12 +01:00
|
|
|
@import '../../../styles/mixins.scss';
|
2022-12-27 21:08:49 +01:00
|
|
|
|
2022-07-11 01:42:35 +02:00
|
|
|
.footer {
|
2023-04-27 00:31:23 +02:00
|
|
|
display: flex;
|
2022-10-22 10:45:54 +02:00
|
|
|
align-items: center;
|
2022-10-27 00:23:49 +02:00
|
|
|
flex-wrap: wrap;
|
2022-10-22 10:45:54 +02:00
|
|
|
height: var(--footer-height);
|
2022-08-30 08:33:30 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: row;
|
|
|
|
background-color: var(--theme-color-background-header);
|
|
|
|
color: var(--theme-color-components-text-on-dark);
|
|
|
|
font-family: var(--theme-text-body-font-family);
|
2022-11-13 05:26:55 +01:00
|
|
|
|
2023-04-24 19:58:57 +02:00
|
|
|
padding: 0.6rem 1rem;
|
|
|
|
font-size: 0.75rem;
|
|
|
|
font-weight: 400;
|
2022-08-30 08:33:30 +02:00
|
|
|
border-top: 1px solid rgba(214, 211, 211, 0.5);
|
2023-04-28 21:09:00 +02:00
|
|
|
width: 100%;
|
2023-04-27 00:31:23 +02:00
|
|
|
|
2022-12-29 19:14:12 +01:00
|
|
|
@include screen(tablet) {
|
|
|
|
font-size: 10px;
|
2023-04-27 00:31:23 +02:00
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
|
2022-12-29 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2023-04-28 21:09:00 +02:00
|
|
|
@include screen(mobile) {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
2022-12-29 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2023-04-28 21:09:00 +02:00
|
|
|
|
|
|
|
|
2022-11-13 21:39:20 +01:00
|
|
|
a {
|
|
|
|
color: var(--theme-color-components-text-on-dark);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-08-30 08:33:30 +02:00
|
|
|
.links {
|
2022-10-27 00:23:49 +02:00
|
|
|
column-gap: 2rem;
|
|
|
|
width: auto;
|
2022-08-30 08:33:30 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2022-07-11 01:42:35 +02:00
|
|
|
}
|