Slight padding fix.
This commit is contained in:
parent
d89fbd3469
commit
5c751b3eae
1 changed files with 3 additions and 1 deletions
|
@ -45,10 +45,11 @@
|
||||||
|
|
||||||
.header-main {
|
.header-main {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: var(--site-max-width, 100%);
|
max-width: calc(var(--site-max-width, 100%) + var(--global-spacing-1-5x));
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding: 0 var(--global-spacing-1-5x);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-logo {
|
.header-logo {
|
||||||
|
@ -105,6 +106,7 @@
|
||||||
background-color: #0005;
|
background-color: #0005;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
padding: 0 var(--global-spacing-1-5x);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-breadcrumbs {
|
.header-breadcrumbs {
|
||||||
|
|
Loading…
Reference in a new issue