janahan-law/styles/sass/components/_social-links.scss
2025-08-08 11:53:47 +05:30

26 lines
361 B
SCSS

.social-links {
overflow: hidden;
li {
float: left;
width: 35px;
height: 35px;
margin-right: 1px;
a {
background-color: lighten($theme-primary-color, 10%);
width: 35px;
height: 35px;
line-height: 35px;
display: block;
color: $white;
text-align: center;
&:hover {
background-color: $theme-primary-color;
}
}
}
}