46 lines
700 B
Plaintext
46 lines
700 B
Plaintext
/* components/navigator/index.wxss */
|
|
.navigator {
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
background-color: var(--deep-green);
|
|
color: #fff;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
}
|
|
|
|
.navigatorTitle {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
height: 46px;
|
|
width: 100vw;
|
|
}
|
|
|
|
.back {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-left: 30rpx;
|
|
margin-top: 10rpx;
|
|
z-index: 100;
|
|
}
|
|
|
|
.backWrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
width: 100rpx;
|
|
background-color: transparent;
|
|
height: 46px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
align-items:center;
|
|
}
|
|
|
|
.navigator {
|
|
display: flex;
|
|
} |