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

13
dist/app.css vendored
View File

@@ -11974,3 +11974,16 @@ textarea.form-control-lg {
display: none !important; display: none !important;
} }
} }
img {
max-width: 100%;
}
.team-members .team-members-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.team-members .team-members-wrapper .team-member {
border: 1px solid #C5C5C5;
border-radius: 10px;
}

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2", "/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
"/app.css": "/app.css?id=58e820f334305f8133ab61227bac5d24" "/app.css": "/app.css?id=5edcfa4b365c7c0c568d5945036c2b1f"
} }

View File

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

View File

@@ -2,3 +2,7 @@
// dependancies - bootstrap // dependancies - bootstrap
@import "../../node_modules/bootstrap/scss/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;
}
}
}