thaw/thaw_mobile/nav_bar/nav-bar.css
2024-06-26 22:32:13 +08:00

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;
}