mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
40 lines
638 B
CSS
40 lines
638 B
CSS
.thaw-nav-bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 46px;
|
|
line-height: 46px;
|
|
background-color: var(--thaw-background-color);
|
|
}
|
|
|
|
.thaw-nav-bar__center {
|
|
max-width: 60%;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.thaw-nav-bar__left {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 0 12px;
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.thaw-nav-bar__right {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
padding: 0 12px;
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|