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