Skip to content

Commit

Permalink
Enhance SectionMembers styles and cleanup unused code
Browse files Browse the repository at this point in the history
Updated the MembersSection font-family to include serif and set a fixed min-height for better layout control. Removed commented-out and unnecessary lines for improved code clarity and maintenance. Adjusted .workmanComponent and related elements for streamlined styling and readability.
  • Loading branch information
leolabdev committed Sep 20, 2024
1 parent f5d1ac0 commit b3f36a8
Showing 1 changed file with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
.MembersSection{
font-family: var(--font-family-texts);
//min-height: 100% !important;
font-family: var(--font-family-texts), serif;
min-height: 1000px;
text-align: center;
display: grid;
justify-items: center;
//color: var(--red-dark);

//height: 100%;
}


.scrollBottomButton{
//align-self: start;
margin-bottom: 10px;

@include link-scale-effect
}

.membersListContainer{
border-radius: var(--border-radius-custom);
z-index: 2;
//background-color: var(--transparent-bg-dark);
background-color: rgba(0, 0, 0, 0.55)

}
Expand All @@ -32,8 +27,6 @@
justify-content: center;
text-align: center;



h2{
font-size: clamp(40px, 7vw, 50px);
font-family: var(--font-family-main), serif;
Expand All @@ -49,8 +42,6 @@
}

.workmanComponent{


display: flex;
justify-content: center;
gap: 10px;
Expand Down Expand Up @@ -80,7 +71,5 @@
cursor: pointer;
@include link-scale-effect('icon');
}


}

0 comments on commit b3f36a8

Please sign in to comment.