|
@@ -214,7 +214,7 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
}
|
|
|
|
|
|
.has-main-navigation .site-header {
|
|
|
- padding: var(--global--spacing-horizontal);
|
|
|
+ padding: 0;
|
|
|
}
|
|
|
|
|
|
.has-main-navigation .site-header a {
|
|
@@ -241,9 +241,6 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
}
|
|
|
|
|
|
.site-header {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- justify-content: space-between;
|
|
|
max-width: var(--responsive--alignfull-width);
|
|
|
padding: var(--global--spacing-horizontal);
|
|
|
}
|
|
@@ -254,15 +251,9 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-@media only screen and (max-width: 829px) {
|
|
|
- .site-header {
|
|
|
- flex-wrap: wrap;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
.site-header .site-branding {
|
|
|
- flex-basis: 30%;
|
|
|
- flex-grow: 1;
|
|
|
+ grid-area: branding;
|
|
|
+ padding: var(--global--spacing-horizontal);
|
|
|
text-align: right;
|
|
|
}
|
|
|
|
|
@@ -276,20 +267,17 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
}
|
|
|
|
|
|
.site-header .site-branding .site-logo {
|
|
|
+ grid-area: site-logo;
|
|
|
margin-right: 0;
|
|
|
margin-top: 0;
|
|
|
text-align: right;
|
|
|
}
|
|
|
|
|
|
.site-header .primary-navigation-wrapper {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
margin-bottom: 6px;
|
|
|
}
|
|
|
|
|
|
.site-header .primary-navigation {
|
|
|
- flex-basis: 70%;
|
|
|
- flex-grow: 4;
|
|
|
margin-top: 0;
|
|
|
}
|
|
|
|
|
@@ -382,8 +370,7 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
}
|
|
|
|
|
|
.has-title-and-tagline .site-logo {
|
|
|
- flex-basis: 100%;
|
|
|
- margin-bottom: var(--global--spacing-vertical);
|
|
|
+ margin: 0;
|
|
|
}
|
|
|
|
|
|
.primary-navigation-open .has-title-and-tagline .site-logo {
|
|
@@ -408,6 +395,14 @@ Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-me
|
|
|
margin: 0;
|
|
|
}
|
|
|
|
|
|
+.site-header {
|
|
|
+ display: grid;
|
|
|
+ grid-template-areas: "site-logo site-logo site-logo" "branding branding primary-navigation" "branding branding cart";
|
|
|
+ grid-template-columns: 0.5fr 1fr 0.5fr;
|
|
|
+ grid-template-rows: auto;
|
|
|
+ grid-column-gap: 16px;
|
|
|
+}
|
|
|
+
|
|
|
.site-footer > .site-info {
|
|
|
font-family: var(--global--font-secondary);
|
|
|
}
|