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.

34 lines
730 B

10 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Secondary menu region layout styling.
*/
.region--secondary-menu {
display: flex;
10 months ago
margin-block-start: var(--sp2);
margin-block-end: var(--sp2);
10 months ago
}
.region--secondary-menu > * {
10 months ago
margin-block-end: 0;
}
10 months ago
@media (min-width: 75rem) {
10 months ago
body:not(.is-always-mobile-nav) .region--secondary-menu {
justify-content: flex-end;
margin: 0;
10 months ago
10 months ago
/* If the secondary nav is the first item within the header, it does not need left separator. */
10 months ago
}
10 months ago
body:not(.is-always-mobile-nav) .region--secondary-menu:first-child .secondary-nav::before {
content: none;
}
}