1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/src/components/organisms/Footer.module.scss

45 lines
755 B
SCSS
Raw Normal View History

2018-04-02 23:22:48 +02:00
@import 'variables';
.footer {
2018-05-13 21:50:55 +02:00
padding: $spacer;
padding-top: $spacer * 4;
2018-04-02 23:22:48 +02:00
text-align: center;
2018-05-10 16:06:17 +02:00
color: $text-color-light;
2018-04-02 23:22:48 +02:00
&,
small {
font-size: $font-size-mini;
}
2018-04-11 13:53:35 +02:00
2018-06-11 19:48:38 +02:00
> aside {
2018-04-11 13:53:35 +02:00
margin-top: 0;
2018-05-13 21:50:55 +02:00
margin-bottom: $spacer * 2;
2018-04-11 13:53:35 +02:00
}
2018-05-10 16:06:17 +02:00
2018-06-12 00:04:20 +02:00
:global(.dark) & {
2018-05-10 16:06:17 +02:00
color: $text-color-light--dark;
}
2018-04-02 23:22:48 +02:00
}
2018-05-06 00:59:46 +02:00
2019-01-04 14:19:34 +01:00
.actions {
2018-05-06 00:59:46 +02:00
a {
display: inline-block;
padding: 0 $spacer / 4;
font-size: $font-size-small;
2018-06-12 11:05:33 +02:00
margin-left: $spacer / 2;
margin-right: $spacer / 2;
margin-bottom: $spacer / 2;
2018-05-10 16:06:17 +02:00
color: $text-color-light;
2018-06-12 00:26:57 +02:00
:global(.dark) & {
color: $text-color-light--dark;
}
2018-05-06 00:59:46 +02:00
}
}
2019-01-04 14:19:34 +01:00
.copyright {
a {
color: inherit;
}
}