16 lines
305 B
SCSS
16 lines
305 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
justify-content: space-between;
|
|
a {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 100%;
|
|
background: #333333;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|