57 lines
1,013 B
SCSS
57 lines
1,013 B
SCSS
.list-socials {
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: 400px;
|
|
a{
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.icon{
|
|
width: 20px;
|
|
height: 20px;
|
|
position: relative;
|
|
top: -2px;
|
|
}
|
|
svg{
|
|
display: flex;
|
|
align-items: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.text{ display: none; }
|
|
}
|
|
|
|
|
|
|
|
// with text
|
|
@media #{$small-up}{
|
|
.footer__socials .list-socials{
|
|
|
|
display: block;
|
|
|
|
li{
|
|
margin-bottom: calc(var(--spacing)*0.5);
|
|
break-inside: avoid;
|
|
}
|
|
|
|
a{
|
|
gap: 1ch;
|
|
|
|
height: calc(var(--spacing)*1);
|
|
&::after{
|
|
content: '↗';
|
|
color: var(--grey-300);
|
|
}
|
|
}
|
|
.text{
|
|
display: block;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
}
|