website/styles/partials/_footer.scss

22 lines
347 B
SCSS
Raw Normal View History

2023-11-19 00:11:43 +01:00
.footer {
2023-06-06 23:37:58 +02:00
display: flex;
align-items: center;
justify-content: space-between;
2023-11-19 00:11:43 +01:00
max-height: min-content;
2023-04-07 01:11:08 +02:00
padding: 0.5em;
2023-11-19 00:11:43 +01:00
font-size: var(--fs-sm);
2023-04-07 01:11:08 +02:00
background-color: var(--c-footer-bg);
2023-11-19 00:11:43 +01:00
color: var(--c-footer-text);
2023-04-07 01:11:08 +02:00
2023-11-19 00:11:43 +01:00
a {
color: var(--c-primary);
2023-06-06 23:37:58 +02:00
}
2023-11-19 00:11:43 +01:00
&__cc-wrap {
2023-06-06 23:37:58 +02:00
display: block;
2023-04-07 01:11:08 +02:00
}
2023-11-19 00:11:43 +01:00
&__cc-stamp {
height: 100%;
}
2023-04-07 01:11:08 +02:00
}