clone of olivero for island lives
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.1 KiB

10 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Grid system definition for the footer top and footer bottom layouts.
*/
/**
* Creates stacking context ensuring that child elements can never appear in
* front of mobile navigation.
*/
.site-footer {
position: relative;
z-index: 1;
}
.site-footer__inner {
10 months ago
padding-block: var(--sp2);
10 months ago
}
@media (min-width: 75rem) {
10 months ago
.site-footer__inner {
padding-block: var(--sp4) calc(13 * var(--sp));
10 months ago
}
10 months ago
}
10 months ago
10 months ago
.region--footer_top__inner > *,
.region--footer_bottom__inner > * {
margin-block-end: var(--sp2);
}
10 months ago
@media (min-width: 43.75rem) {
10 months ago
.region--footer_top__inner > *,
.region--footer_bottom__inner > * {
flex: 1;
margin-block-end: 0;
10 months ago
}
10 months ago
10 months ago
.region--footer_top__inner > *:not(:last-child),
.region--footer_bottom__inner > *:not(:last-child) {
margin-inline-end: var(--sp2);
10 months ago
}
10 months ago
}
10 months ago
@media (min-width: 43.75rem) {
10 months ago
.region--footer_top__inner,
.region--footer_bottom__inner {
10 months ago
display: flex;
10 months ago
flex-wrap: wrap;
10 months ago
}
10 months ago
}