Skip to content

Commit

Permalink
Merge branch 'develop' into 'main'
Browse files Browse the repository at this point in the history
  • Loading branch information
cogniSyb committed Oct 11, 2023
2 parents f79715d + 715a91e commit 0d3437c
Show file tree
Hide file tree
Showing 12 changed files with 380 additions and 253 deletions.
32 changes: 27 additions & 5 deletions blocks/footer/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
background: var(--c-grey-50);
}

.footer :is(.footer__title, p, a) {
.footer :is(p, a) {
font-family: var(--ff-volvo-novum);
font-feature-settings: 'clig' off, 'liga' off;
font-size: 16px;
Expand Down Expand Up @@ -38,10 +38,11 @@
}

.footer-list .footer__title {
font-family: var(--ff-volvo-novum-medium);
font: var(--f-subtitle-1-font-size) / var(--f-subtitle-1-line-height) var(--ff-volvo-novum-medium);
letter-spacing: var(--f-subtitle-1-letter-spacing);
border-top: 1px solid var(--border-color);
cursor: pointer;
padding: 22px 16px;
padding: 24px 16px;
display: flex;
align-items: center;
}
Expand All @@ -67,7 +68,12 @@

.footer-list .icon-chevron-down {
margin-left: auto;
transition: transform var(--duration-medium) cubic-bezier(0.45, 0, 0.125, 1);
transition: transform var(--duration-small) var(--easing-standard);
}

.footer-list .icon-chevron-down svg {
width: 24px;
height: 24px;
}

.footer-list .expand .icon-chevron-down {
Expand Down Expand Up @@ -98,6 +104,7 @@
}

.footer-copyright {
color: var(--c-grey-4);
text-align: center;
flex-basis: 100%;
}
Expand All @@ -116,6 +123,11 @@
flex-wrap: wrap;
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-bar li {
margin-bottom: 4px;
}

.footer-bar li:not(:first-child) {
padding-left: 8px;
}
Expand All @@ -136,11 +148,16 @@
}

.footer-bar li:nth-last-child(1) {
margin-top: 24px;
margin-bottom: 0;
flex: 0 0 100%;
text-align: center;
}

/* stylelint-disable-next-line no-descending-specificity */
.footer-bar a {
display: inline-block;
}

.v2-scroll-to-top {
background-color: var(--c-white);
border-radius: 50%;
Expand Down Expand Up @@ -171,6 +188,7 @@
outline: 2px solid var(--light-border-focus);
}

/* stylelint-disable-next-line no-descending-specificity */
.v2-scroll-to-top svg {
display: block;
}
Expand Down Expand Up @@ -278,6 +296,10 @@
flex-basis: auto;
}

.footer .footer-copyright p {
font-size: 16px;
}

.footer-text-icon-wrapper {
display: flex;
gap: 4px;
Expand Down
Loading

0 comments on commit 0d3437c

Please sign in to comment.