This commit is contained in:
2025-05-06 11:50:23 -07:00
parent 75050c334e
commit 158345bafb
5 changed files with 70 additions and 1 deletions

35
src/scss/team-member.scss Normal file
View File

@@ -0,0 +1,35 @@
.team-member-top {
background-size: contain;
color: $c-white;
height: 784px;
display: flex;
justify-content: center;
align-items: center;
h1 {
margin: 0;
}
}
.team-members {
.team-members-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.team-member {
border: 1px solid $c-borderGrey;
border-radius: 10px;
max-width: 593px;
padding: 1rem;
.left {
width: calc(33% - 0.5rem);
a {
display: block;
}
}
}
}
}