Use same grid for header as for inspect body

This commit is contained in:
Basti 2018-01-06 15:53:18 +00:00
parent 0ab2e9e732
commit ebbe52c81d

View File

@ -67,15 +67,15 @@
> header { > header {
height: 4rem; height: 4rem;
display: flex; width: 100%;
flex-direction: row; display: grid;
grid-template-columns: 1.618fr 3rem 1fr;
nav.breadcrumb-nav { // nav.breadcrumb-nav {
flex: 1; // }
}
nav.actions { nav.actions {
flex: 1; grid-column-start: 3;
text-align: right; text-align: right;
} }
} }