thaw/thaw_mobile/nav_bar/nav-bar.css

41 lines
638 B
CSS
Raw Permalink Normal View History

2023-11-05 16:03:58 +08:00
.thaw-nav-bar {
2023-06-04 17:14:41 +08:00
position: fixed;
top: 0;
left: 0;
right: 0;
height: 46px;
line-height: 46px;
2023-11-05 16:03:58 +08:00
background-color: var(--thaw-background-color);
2023-06-04 17:14:41 +08:00
}
2023-11-05 16:03:58 +08:00
.thaw-nav-bar__center {
2023-06-04 17:14:41 +08:00
max-width: 60%;
font-weight: 600;
text-align: center;
margin: 0 auto;
}
2023-11-05 16:03:58 +08:00
.thaw-nav-bar__left {
2023-06-04 17:14:41 +08:00
position: absolute;
top: 0;
bottom: 0;
left: 0;
padding: 0 12px;
cursor: pointer;
display: flex;
align-items: center;
}
2023-11-05 16:03:58 +08:00
.thaw-nav-bar__right {
2023-06-04 17:14:41 +08:00
position: absolute;
top: 0;
bottom: 0;
right: 0;
padding: 0 12px;
cursor: pointer;
display: flex;
align-items: center;
}