1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-17 18:13:14 +02:00
blog/src/components/Post/PostLinkActions.module.scss

25 lines
495 B
SCSS
Raw Normal View History

2018-07-19 16:49:20 +02:00
@import 'variables';
.postLinkActions {
display: flex;
justify-content: space-between;
margin-top: $spacer * 2;
2018-07-21 23:30:16 +02:00
a {
svg {
width: $font-size-small;
height: $font-size-small;
display: inline-block;
fill: $text-color-light;
}
&:last-child {
svg {
width: $font-size-base;
height: $font-size-base;
fill: $brand-cyan;
}
}
}
2018-07-19 16:49:20 +02:00
}