20 lines
353 B
CSS
20 lines
353 B
CSS
.pageHeader {
|
|
display: grid;
|
|
grid-template-columns: 1fr max-content;
|
|
place-items: center stretch;
|
|
place-content: stretch;
|
|
padding: 0.5rem;
|
|
background-color: var(--contrast-color);
|
|
}
|
|
|
|
.pageHeader h1 {
|
|
place-self: baseline start;
|
|
}
|
|
|
|
.pageHeader button.logout {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.pageHeader .user {
|
|
text-align: right;
|
|
} |