Files
nairobi/app/assets/stylesheets/layout/social.scss
Javi Martín a2c032573f Rename brand-text mixin to brand-color
This is consistent with the `body-colors` mixin and with other mixins
we're about to add, like `anchor-color`.
2022-11-20 00:29:12 +01:00

27 lines
333 B
SCSS

.social {
@include grid-column;
text-align: right;
@include breakpoint(medium) {
width: 1 * 100% / 3;
}
ul {
margin: 0;
}
li {
display: inline-block;
}
a {
font-size: rem-calc(24);
margin: 0 $line-height / 2;
text-decoration: none;
&:hover {
@include brand-color;
}
}
}