35c794cf58
- Modularized the Sass architecture to enhance code maintainability and reduce the output file size - Replaced deprecated `@import` with `@use` / `@forward`
36 lines
595 B
SCSS
36 lines
595 B
SCSS
@use '../abstracts/breakpoints' as bp;
|
|
@use '../abstracts/variables' as v;
|
|
@use '../abstracts/mixins' as mx;
|
|
@use '../abstracts/placeholders';
|
|
|
|
footer {
|
|
background-color: var(--main-bg);
|
|
height: v.$footer-height;
|
|
border-top: 1px solid var(--main-border-color);
|
|
|
|
@extend %text-xs;
|
|
|
|
@include bp.lt(bp.get(lg)) {
|
|
@include mx.slide;
|
|
|
|
height: v.$footer-height-large;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
a {
|
|
@extend %text-highlight;
|
|
|
|
&:hover {
|
|
@extend %link-hover;
|
|
}
|
|
}
|
|
|
|
em {
|
|
@extend %text-highlight;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|