1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-17 18:03:22 +02:00
portfolio/src/components/organisms/Footer.module.scss

45 lines
755 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;
}
}
.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;
}
}
}
.copyright {
a {
color: inherit;
}
}