bottomBar responsive
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
This commit is contained in:
parent
99ccc15ba9
commit
f24b296ff7
15 changed files with 445 additions and 303 deletions
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
--max-w-content: 700px;
|
||||
--max-w-cards: 940px;
|
||||
--max-w-site: 1600px;
|
||||
--z-header: 2000;
|
||||
--panel-w: 310px;
|
||||
|
||||
|
|
|
|||
|
|
@ -16,10 +16,6 @@
|
|||
transition: bottom var(--transition-scroll);
|
||||
|
||||
|
||||
|
||||
|
||||
// border-top: 2px solid var(--grey-800);
|
||||
|
||||
.progress-container{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
|
@ -90,4 +86,21 @@
|
|||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media #{$small} {
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.bottom-bar__inner{
|
||||
height: calc(var(--header-h)*0.5);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.title-group, .btn--download, .btn--back-to-top{ display: none; }
|
||||
}
|
||||
}
|
||||
|
|
@ -3,65 +3,82 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
max-width: 400px;
|
||||
max-width: 350px;
|
||||
a{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li{
|
||||
--size-icon: 20px;
|
||||
}
|
||||
|
||||
li[data-socials="youtube"]{
|
||||
--size-icon: 26px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.icon{
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: var(--size-icon);
|
||||
height: var(--size-icon);
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
svg{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: var(--size-icon);
|
||||
height: var(--size-icon);
|
||||
fill: var(--color-txt);
|
||||
|
||||
}
|
||||
|
||||
.text{ display: none; }
|
||||
|
||||
|
||||
a:hover{
|
||||
svg{
|
||||
fill: var(--color-txt-light);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// with text
|
||||
@media #{$small-up}{
|
||||
.footer__socials .list-socials{
|
||||
// @media #{$small-up}{
|
||||
// .footer__socials .list-socials{
|
||||
|
||||
display: block;
|
||||
// display: block;
|
||||
|
||||
li{
|
||||
margin-bottom: calc(var(--spacing)*0.25);
|
||||
break-inside: avoid;
|
||||
font-size: var(--fs-small);
|
||||
// li{
|
||||
// margin-bottom: calc(var(--spacing)*0.25);
|
||||
// break-inside: avoid;
|
||||
// font-size: var(--fs-small);
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
a{
|
||||
gap: 1ch;
|
||||
// a{
|
||||
// gap: 1ch;
|
||||
|
||||
height: calc(var(--spacing)*1);
|
||||
&::after{
|
||||
content: '↗';
|
||||
color: var(--grey-300);
|
||||
}
|
||||
// height: calc(var(--spacing)*1);
|
||||
// &::after{
|
||||
// content: '↗';
|
||||
// color: var(--grey-300);
|
||||
// }
|
||||
|
||||
&:hover{
|
||||
color: var(--color-accent);
|
||||
&::after{
|
||||
color: var(--color-accent);
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
.text{
|
||||
display: block;
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
// &:hover{
|
||||
// color: var(--color-accent);
|
||||
// &::after{
|
||||
// color: var(--color-accent);
|
||||
// opacity: 0.5;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// .text{
|
||||
// display: block;
|
||||
// line-height: 1;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
|
|
|||
63
assets/css/components/_support-bar.scss
Normal file
63
assets/css/components/_support-bar.scss
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
#support-bar {
|
||||
height: var(--header-h);
|
||||
background-color: var(--color-accent);
|
||||
color: var(--color-bg);
|
||||
padding: 0 var(--padding-body);
|
||||
|
||||
|
||||
|
||||
.support-bar__container {
|
||||
max-width: var(--max-w-cards);
|
||||
margin: 0 auto;
|
||||
|
||||
height: 100%;
|
||||
display: flex;
|
||||
|
||||
@media #{$small-up} {
|
||||
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 2ch;
|
||||
}
|
||||
|
||||
@media #{$small} {
|
||||
flex-direction: column;
|
||||
font-size: var(--fs-small);
|
||||
line-height: 1.1;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.baseline {
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
|
||||
}
|
||||
|
||||
.btn {
|
||||
text-transform: uppercase;
|
||||
color: var(--color-bg);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
word-wrap: nowrap;
|
||||
white-space: nowrap;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media #{$small} {
|
||||
height: auto;
|
||||
padding: calc(var(--spacing)*0.75) var(--padding-body);
|
||||
.btn{
|
||||
margin-top: calc(var(--spacing)*0.75);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@ body{
|
|||
flex-grow: 1;
|
||||
padding: 0 var(--padding-body);
|
||||
padding-top: var(--header-h);
|
||||
padding-bottom: calc(var(--spacing)*2);
|
||||
padding-bottom: calc(var(--spacing)*6);
|
||||
|
||||
min-height: 100dvh;
|
||||
min-height: 100vh;
|
||||
|
|
|
|||
|
|
@ -1,116 +1,144 @@
|
|||
#site-footer{
|
||||
#site-footer {
|
||||
|
||||
background-color: var(--dark);
|
||||
padding: calc(var(--padding-body)*2) var(--padding-body);
|
||||
z-index: 500;
|
||||
background-color: var(--dark);
|
||||
padding: calc(var(--spacing)*2) var(--padding-body);
|
||||
z-index: 500;
|
||||
|
||||
.site-footer__container{
|
||||
.site-footer__container {
|
||||
max-width: var(--max-w-cards);
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--padding-body);
|
||||
|
||||
font-size: var(--fs-small);
|
||||
}
|
||||
|
||||
.logo {
|
||||
margin-top: calc(var(--spacing)*0.25);
|
||||
margin-bottom: calc(var(--spacing)*1);
|
||||
svg{
|
||||
|
||||
|
||||
.logo {
|
||||
// margin-top: calc(var(--spacing)*0.25);
|
||||
margin-bottom: calc(var(--spacing)*0.5);
|
||||
|
||||
svg {
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
p{
|
||||
margin: calc(var(--spacing)*0.5) 0;
|
||||
font-size: var(--fs-small);
|
||||
a{
|
||||
text-decoration: none;
|
||||
&:hover{
|
||||
text-decoration: underline;
|
||||
color: currentColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.p__small{
|
||||
font-size: var(--fs-xsmall);
|
||||
color: var(--grey-600);
|
||||
}
|
||||
.baseline{
|
||||
max-width: 40ch;
|
||||
}
|
||||
|
||||
.footer__mentions{
|
||||
p{
|
||||
font-size: var(--fs-xsmall);
|
||||
color: var(--color-txt)
|
||||
.list-links {
|
||||
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
margin-bottom: calc(var(--spacing)*0.5);
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li:hover a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.hightlight {
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.footer__socials > p{
|
||||
font-weight: 500;
|
||||
|
||||
}
|
||||
|
||||
@media #{$small}{
|
||||
|
||||
|
||||
.footer__socials{
|
||||
margin-top: calc(var(--spacing)*0.75);
|
||||
padding-top: calc(var(--spacing)*0.25);
|
||||
border-top: var(--border-light);
|
||||
|
||||
|
||||
|
||||
.list-socials{
|
||||
margin-top: calc(var(--spacing)*0.5);
|
||||
margin-bottom: calc(var(--spacing)*0.75);
|
||||
// @media #{$medium} {
|
||||
|
||||
|
||||
// }
|
||||
|
||||
@media #{$small-up} {
|
||||
.site-footer__container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 350px;
|
||||
column-gap: calc(var(--padding-inner)*2);
|
||||
|
||||
.logo{ grid-column: span 2;}
|
||||
.baseline{
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
}
|
||||
.list-links{
|
||||
grid-column: 2;
|
||||
grid-row: 2;
|
||||
max-width: 350px;
|
||||
margin-bottom: calc(var(--spacing)*1);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: var(--padding-inner);
|
||||
|
||||
|
||||
|
||||
li {
|
||||
// margin-bottom: calc(var(--spacing)*1);
|
||||
}
|
||||
}
|
||||
.socials{
|
||||
grid-column: 2;
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
|
||||
.credits {
|
||||
font-size: var(--fs-xsmall);
|
||||
grid-column: 1;
|
||||
grid-row: 3;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
.footer__mentions{
|
||||
|
||||
border-top: var(--border-light);
|
||||
padding-top: calc(var(--spacing)*0.25);
|
||||
p{
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
|
||||
@media #{$small} {
|
||||
|
||||
.list-links {
|
||||
margin-top: calc(var(--spacing)*1);
|
||||
li {
|
||||
margin-bottom: calc(var(--spacing)*0.5);
|
||||
}
|
||||
|
||||
.hightlight {
|
||||
margin-top: calc(var(--spacing)*1.5);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.socials {
|
||||
margin-top: calc(var(--spacing)*2);
|
||||
}
|
||||
|
||||
.p__small{
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media #{$small-up}{
|
||||
|
||||
.site-footer__container{
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 2fr;
|
||||
column-gap: calc(var(--spacing)*2);
|
||||
}
|
||||
|
||||
.footer__newsletter{
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
.footer__socials{
|
||||
grid-column: 2;
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
.footer__socials .socials{
|
||||
columns: 2;
|
||||
margin-top: calc(var(--spacing)*1);
|
||||
}
|
||||
|
||||
.footer__mentions{
|
||||
grid-column: span 2;
|
||||
p{
|
||||
.credits {
|
||||
margin-top: calc(var(--spacing)*1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@media #{$x-small} {
|
||||
.credits {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
--fs-button-bold: 22px;
|
||||
--max-w-content: 700px;
|
||||
--max-w-cards: 940px;
|
||||
--max-w-site: 1600px;
|
||||
--z-header: 2000;
|
||||
--panel-w: 310px;
|
||||
}
|
||||
|
|
@ -932,59 +933,36 @@ button.sort[data-sort-type=up] .arrow {
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
max-width: 400px;
|
||||
max-width: 350px;
|
||||
}
|
||||
.list-socials a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
.list-socials li {
|
||||
--size-icon: 20px;
|
||||
}
|
||||
.list-socials li[data-socials=youtube] {
|
||||
--size-icon: 26px;
|
||||
}
|
||||
.list-socials .icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: var(--size-icon);
|
||||
height: var(--size-icon);
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
.list-socials svg {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: var(--size-icon);
|
||||
height: var(--size-icon);
|
||||
fill: var(--color-txt);
|
||||
}
|
||||
.list-socials .text {
|
||||
display: none;
|
||||
.list-socials a:hover svg {
|
||||
fill: var(--color-txt-light);
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.footer__socials .list-socials {
|
||||
display: block;
|
||||
}
|
||||
.footer__socials .list-socials li {
|
||||
margin-bottom: calc(var(--spacing) * 0.25);
|
||||
-moz-column-break-inside: avoid;
|
||||
break-inside: avoid;
|
||||
font-size: var(--fs-small);
|
||||
}
|
||||
.footer__socials .list-socials a {
|
||||
gap: 1ch;
|
||||
height: calc(var(--spacing) * 1);
|
||||
}
|
||||
.footer__socials .list-socials a::after {
|
||||
content: "↗";
|
||||
color: var(--grey-300);
|
||||
}
|
||||
.footer__socials .list-socials a:hover {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
.footer__socials .list-socials a:hover::after {
|
||||
color: var(--color-accent);
|
||||
opacity: 0.5;
|
||||
}
|
||||
.footer__socials .list-socials .text {
|
||||
display: block;
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
.modal--share {
|
||||
width: 240px;
|
||||
padding-bottom: var(--padding-inner);
|
||||
|
|
@ -2155,6 +2133,75 @@ button.sort[data-sort-type=up] .arrow {
|
|||
padding-left: 1ch;
|
||||
padding-right: 1ch;
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
#bottom-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
#bottom-bar .bottom-bar__inner {
|
||||
height: calc(var(--header-h) * 0.5);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
#bottom-bar .title-group, #bottom-bar .btn--download, #bottom-bar .btn--back-to-top {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#support-bar {
|
||||
height: var(--header-h);
|
||||
background-color: var(--color-accent);
|
||||
color: var(--color-bg);
|
||||
padding: 0 var(--padding-body);
|
||||
}
|
||||
#support-bar .support-bar__container {
|
||||
max-width: var(--max-w-cards);
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
}
|
||||
@media screen and (min-width: 768px) {
|
||||
#support-bar .support-bar__container {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 2ch;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
#support-bar .support-bar__container {
|
||||
flex-direction: column;
|
||||
font-size: var(--fs-small);
|
||||
line-height: 1.1;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
#support-bar .baseline {
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
}
|
||||
#support-bar .btn {
|
||||
text-transform: uppercase;
|
||||
color: var(--color-bg);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
word-wrap: nowrap;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#support-bar .btn:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
#support-bar {
|
||||
height: auto;
|
||||
padding: calc(var(--spacing) * 0.75) var(--padding-body);
|
||||
}
|
||||
#support-bar .btn {
|
||||
margin-top: calc(var(--spacing) * 0.75);
|
||||
}
|
||||
}
|
||||
|
||||
#site-header {
|
||||
z-index: var(--z-header);
|
||||
|
|
@ -2360,92 +2407,94 @@ body.menu-open #menu-toggle .close {
|
|||
|
||||
#site-footer {
|
||||
background-color: var(--dark);
|
||||
padding: calc(var(--padding-body) * 2) var(--padding-body);
|
||||
padding: calc(var(--spacing) * 2) var(--padding-body);
|
||||
z-index: 500;
|
||||
}
|
||||
#site-footer .site-footer__container {
|
||||
max-width: var(--max-w-cards);
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--padding-body);
|
||||
font-size: var(--fs-small);
|
||||
}
|
||||
#site-footer .logo {
|
||||
margin-top: calc(var(--spacing) * 0.25);
|
||||
margin-bottom: calc(var(--spacing) * 1);
|
||||
margin-bottom: calc(var(--spacing) * 0.5);
|
||||
}
|
||||
#site-footer .logo svg {
|
||||
width: 100px;
|
||||
}
|
||||
#site-footer p {
|
||||
margin: calc(var(--spacing) * 0.5) 0;
|
||||
font-size: var(--fs-small);
|
||||
#site-footer .baseline {
|
||||
max-width: 40ch;
|
||||
}
|
||||
#site-footer p a {
|
||||
#site-footer .list-links ul {
|
||||
list-style: none;
|
||||
}
|
||||
#site-footer .list-links ul li {
|
||||
margin-bottom: calc(var(--spacing) * 0.5);
|
||||
}
|
||||
#site-footer .list-links ul a {
|
||||
text-decoration: none;
|
||||
}
|
||||
#site-footer p a:hover {
|
||||
#site-footer .list-links ul li:hover a {
|
||||
text-decoration: underline;
|
||||
color: currentColor;
|
||||
}
|
||||
#site-footer .p__small {
|
||||
font-size: var(--fs-xsmall);
|
||||
color: var(--grey-600);
|
||||
}
|
||||
#site-footer .footer__mentions p {
|
||||
font-size: var(--fs-xsmall);
|
||||
color: var(--color-txt);
|
||||
}
|
||||
#site-footer .footer__socials > p {
|
||||
#site-footer .list-links .hightlight {
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
#site-footer .footer__socials {
|
||||
margin-top: calc(var(--spacing) * 0.75);
|
||||
padding-top: calc(var(--spacing) * 0.25);
|
||||
border-top: var(--border-light);
|
||||
}
|
||||
#site-footer .footer__socials .list-socials {
|
||||
margin-top: calc(var(--spacing) * 0.5);
|
||||
margin-bottom: calc(var(--spacing) * 0.75);
|
||||
}
|
||||
#site-footer .footer__mentions {
|
||||
border-top: var(--border-light);
|
||||
padding-top: calc(var(--spacing) * 0.25);
|
||||
}
|
||||
#site-footer .footer__mentions p {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
#site-footer .p__small {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 768px) {
|
||||
#site-footer .site-footer__container {
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 2fr;
|
||||
-moz-column-gap: calc(var(--spacing) * 2);
|
||||
column-gap: calc(var(--spacing) * 2);
|
||||
grid-template-columns: 1fr 350px;
|
||||
-moz-column-gap: calc(var(--padding-inner) * 2);
|
||||
column-gap: calc(var(--padding-inner) * 2);
|
||||
}
|
||||
#site-footer .footer__newsletter {
|
||||
#site-footer .site-footer__container .logo {
|
||||
grid-column: span 2;
|
||||
}
|
||||
#site-footer .site-footer__container .baseline {
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
}
|
||||
#site-footer .footer__socials {
|
||||
#site-footer .site-footer__container .list-links {
|
||||
grid-column: 2;
|
||||
grid-row: 2;
|
||||
max-width: 350px;
|
||||
margin-bottom: calc(var(--spacing) * 1);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: var(--padding-inner);
|
||||
}
|
||||
#site-footer .footer__socials .socials {
|
||||
-moz-columns: 2;
|
||||
columns: 2;
|
||||
#site-footer .site-footer__container .socials {
|
||||
grid-column: 2;
|
||||
grid-row: 3;
|
||||
}
|
||||
#site-footer .site-footer__container .credits {
|
||||
font-size: var(--fs-xsmall);
|
||||
grid-column: 1;
|
||||
grid-row: 3;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
#site-footer .list-links {
|
||||
margin-top: calc(var(--spacing) * 1);
|
||||
}
|
||||
#site-footer .footer__mentions {
|
||||
grid-column: span 2;
|
||||
#site-footer .list-links li {
|
||||
margin-bottom: calc(var(--spacing) * 0.5);
|
||||
}
|
||||
#site-footer .footer__mentions p {
|
||||
#site-footer .list-links .hightlight {
|
||||
margin-top: calc(var(--spacing) * 1.5);
|
||||
}
|
||||
#site-footer .socials {
|
||||
margin-top: calc(var(--spacing) * 2);
|
||||
}
|
||||
#site-footer .credits {
|
||||
margin-top: calc(var(--spacing) * 1);
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 560px) {
|
||||
#site-footer .credits {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100dvh;
|
||||
|
|
@ -2459,7 +2508,7 @@ body main {
|
|||
flex-grow: 1;
|
||||
padding: 0 var(--padding-body);
|
||||
padding-top: var(--header-h);
|
||||
padding-bottom: calc(var(--spacing) * 2);
|
||||
padding-bottom: calc(var(--spacing) * 6);
|
||||
min-height: 100dvh;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -30,6 +30,7 @@
|
|||
@import "components/swiper";
|
||||
@import "components/slider-before-after";
|
||||
@import "components/bottom-bar";
|
||||
@import "components/support-bar";
|
||||
|
||||
@import "partials/site-header";
|
||||
@import "partials/site-menu";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue