This commit is contained in:
2025-05-06 11:13:06 -07:00
parent d1526d7c05
commit 44219fceb8
6 changed files with 38 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
$c-offWhite: #F2F2F2;
$c-offWhiteLight: #F9F8F8;
$c-borderGrey: #C5C5C5;
$c-navy: #063C5A;
$c-charcoal: #2B2400;
$c-tan: #B9AF78;

View File

@@ -2,3 +2,7 @@
// dependancies - bootstrap
@import "../../node_modules/bootstrap/scss/bootstrap";
@import "global";
@import "team-members";

3
src/scss/global.scss Normal file
View File

@@ -0,0 +1,3 @@
img {
max-width: 100%;
}

View File

@@ -0,0 +1,16 @@
.team-members-top {
}
.team-members {
.team-members-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.team-member {
border: 1px solid $c-borderGrey;
border-radius: 10px;
}
}
}