You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitProject1/src/miniprogram/components/navigation-bar/index.wxss

76 lines
1.4 KiB

.navigation-bar {
background-color: #f7f7f7;
}
.navigation-bar .android {
height: 48px;
}
.navigation-bar__inner {
height: 44px;
display: flex;
flex-direction: row;
align-items: center;
}
.navigation-bar__inner .navigation-bar__left {
position: relative;
padding-left: 16px;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
}
.navigation-bar__inner .navigation-bar__left .navigation-bar__buttons {
height: 100%;
flex-direction: row;
align-items: center;
min-width: 50px;
}
.navigation-bar__inner .navigation-bar__left .navigation-bar__btn {
display: inline-block;
vertical-align: middle;
background-repeat: no-repeat;
height: 100%;
flex-direction: row;
align-items: center;
}
.navigation-bar__inner .navigation-bar__left .navigation-bar__btn_goback {
width: 8px;
height: 14px;
}
.navigation-bar__inner .navigation-bar__center {
font-size: 17px;
text-align: center;
position: relative;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
}
.navigation-bar__inner .navigation-bar__center.title {
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.navigation-bar__inner .navigation-bar__loading {
margin-right: 4px;
display: inline-flex;
align-items: center;
}
.navigation-bar__inner .navigation-bar__loading .loading {
margin-left: 0;
}
.navigation-bar__inner .navigation-bar__right {
padding-right: 16px;
}