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

46 lines
557 B
SCSS

@import 'variables';
.link {
text-align: center;
width: 2rem;
padding: $spacer / 4;
margin-left: $spacer / 4;
margin-right: $spacer / 4;
display: inline-block;
color: $text-color-light;
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
svg {
transition: color 0.3s ease-in-out;
display: block;
margin: 0 auto;
}
}
.twitter:hover {
fill: #019ad2;
}
.facebook:hover {
fill: #3b5998;
}
.github:hover {
fill: #333;
}
.rss:hover {
fill: #e15a00;
}
.json:hover {
fill: #8be028;
}