1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-02-14 21:10:41 +01:00
portfolio/src/components/organisms/Footer.module.scss

43 lines
750 B
SCSS

@import 'variables';
.footer {
padding: $spacer;
padding-top: $spacer * 4;
text-align: center;
color: $text-color-light;
&,
small {
font-size: $font-size-mini;
}
> aside {
margin-top: 0;
margin-bottom: $spacer * 2;
}
:global(.dark) & {
color: $text-color-light--dark;
}
}
.footer__actions {
a {
display: inline-block;
padding: 0 $spacer / 4;
font-size: $font-size-small;
margin-left: $spacer / 2;
margin-right: $spacer / 2;
margin-bottom: $spacer / 2;
color: $text-color-light;
:global(.dark) & {
color: $text-color-light--dark;
}
}
}
.footer__copyright {
opacity: .7;
}