* Make social links wrap * Add background to social links * add title to social link * fix lint attempt * css lint fix attempt * scss prettier --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com>
19 lines
288 B
SCSS
19 lines
288 B
SCSS
.link {
|
|
width: 30px;
|
|
}
|
|
|
|
.linkBackground {
|
|
background-color: var(--theme-color-components-content-background);
|
|
border-radius: 50%;
|
|
padding: 8px;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
margin-top: 5px;
|
|
}
|