34 lines
527 B
Plaintext
34 lines
527 B
Plaintext
/* components/navigator/index.wxss */
|
|
.navigator {
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
position: relative;
|
|
}
|
|
|
|
.navigatorTitle {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 46px;
|
|
width: 100%;
|
|
}
|
|
|
|
.back {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-left: 30rpx;
|
|
margin-top: 10rpx;
|
|
z-index: 100;
|
|
}
|
|
|
|
.backWrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
background-color: transparent;
|
|
height: 46px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
align-items:center;
|
|
} |