This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/src/components/SocialLink/SocialLink.scss

43 lines
525 B
SCSS
Raw Normal View History

2020-02-24 14:58:14 +00:00
@import "../../variables.scss";
2020-02-12 17:23:10 +00:00
.social-link {
display: flex;
color: $darkGray;
}
.social-link-icon {
width: 32px;
transition: 0.2s transform;
a:hover & {
transform: scale(1.07);
}
svg {
width: 32px;
height: 32px;
}
}
.social-link-text {
flex: 1;
margin-left: 16px;
transition: 0.2s color;
}
.social-link-title {
display: block;
}
.social-link-green {
color: $green;
font-size: 14px;
display: inline-flex;
transition: 0.2s color;
a:hover & {
color: $darkGray;
}
}