1
0
Fork 0
blog/src/components/Post/PostLinkActions.module.scss

25 lines
409 B
SCSS
Raw Normal View History

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