29 lines
No EOL
574 B
SCSS
29 lines
No EOL
574 B
SCSS
.team{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 2ch;
|
|
.member{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2ch;
|
|
width: calc(50% - 2ch);
|
|
|
|
.name{
|
|
font-weight: bold;
|
|
}
|
|
.details{
|
|
font-size: var(--fs-normal);
|
|
margin-top: calc(var(--spacing)*0.25);
|
|
}
|
|
img{
|
|
width: 100px;
|
|
aspect-ratio: 1/1;
|
|
background-color: #cfcfcf;
|
|
border-radius: var(--radius-img);
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
} |