Skip to content

Commit

Permalink
resolved comments
Browse files Browse the repository at this point in the history
  • Loading branch information
achavan9 committed Aug 22, 2023
1 parent 3ffb2cc commit e8c19d3
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions blocks/v2-footer/v2-footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,9 @@
}

.v2-footer .v2-footer-social-media {
border-radius: 17.5px;
color: var(--c-tertiary-cool-gray);
text-decoration: none;
display: flex;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
font-size: 20px;
}

.v2-footer .v2-footer-social-media:hover {
Expand Down Expand Up @@ -130,7 +124,6 @@
font-weight: 700;
line-height: 16px;
letter-spacing: 1.92px;
text-transform: uppercase;
margin-bottom: 12px;
}

Expand All @@ -141,10 +134,10 @@
gap: 0 0;
/* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */
grid-template-areas:
"v2-logo"
"v2-content"
"v2-form"
"v2-social";
'v2-logo'
'v2-content'
'v2-form'
'v2-social';
height: 65vh;
}

Expand Down Expand Up @@ -190,7 +183,7 @@
color:var(--c-primary-black);
position: relative;
width: 100%;
border-bottom: solid black 1px;
border-bottom: solid var(--c-primary-black) 1px;
padding: 24px 0;
display: flex;
justify-content: space-between;
Expand Down Expand Up @@ -219,12 +212,11 @@
}

.v2-footer .v2-pre-footer-list-wrapper h3 {
color: var(--primary-white-ffffff, #FFF);
color: var(--c-primary-white);
font-family: var(--ff-body);
font-size: 12px;
line-height: 16px; /* 133.333% */
letter-spacing: 1.92px;
text-transform: uppercase;
display: flex;
justify-content: space-between;
align-items: baseline;
Expand Down Expand Up @@ -331,8 +323,8 @@
gap: 0 0;
/* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */
grid-template-areas:
"v2-logo v2-content v2-form"
"v2-social v2-content v2-form";
'v2-logo v2-content v2-form'
'v2-social v2-content v2-form';
height: 15vh;
}

Expand Down Expand Up @@ -365,7 +357,7 @@
}

.v2-footer .v2-pre-footer-content ul li {
width: 33.33%;
width: calc(100%/3);
text-align: center;
position: relative;
padding: 28px 0 24px;
Expand All @@ -378,7 +370,7 @@
content: '';
width: 1px;
height: 64px;
background: black;
background: var(--c-primary-black);
position: absolute;
right: 0;
top: 0;
Expand Down

0 comments on commit e8c19d3

Please sign in to comment.