1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00
blog/src/components/organisms/Post/LinkActions.module.scss

30 lines
480 B
SCSS

@import 'variables';
.postLinkActions {
display: flex;
justify-content: space-between;
margin-top: $spacer * 2;
a {
margin: 0;
svg {
width: 1em;
height: 1em;
display: inline-block;
stroke: $text-color-light;
margin-left: $spacer / 8;
position: relative;
top: 0.1rem;
}
&:last-child {
svg {
width: $font-size-base;
height: $font-size-base;
stroke: $brand-cyan;
}
}
}
}