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.
81 lines
1.3 KiB
81 lines
1.3 KiB
5 years ago
|
/* components/navbar/index.wxss */
|
||
|
|
||
|
.navbar {
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 10;
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
|
||
|
.navbar-title {
|
||
|
width: 100%;
|
||
|
box-sizing: border-box;
|
||
|
padding-left: 115px;
|
||
|
padding-right: 115px;
|
||
|
height: 32px;
|
||
|
line-height: 32px;
|
||
|
text-align: center;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
z-index: 10;
|
||
|
color: #333;
|
||
|
font-size: 32rpx;
|
||
|
font-weight:normal;
|
||
|
text-overflow: ellipsis;
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.navbar-action-wrap {
|
||
|
display: -webkit-flex;
|
||
|
display: flex;
|
||
|
-webkit-box-align: center;
|
||
|
-ms-flex-align: center;
|
||
|
-webkit-align-items: center;
|
||
|
align-items: center;
|
||
|
position: absolute;
|
||
|
left: 10px;
|
||
|
z-index: 11;
|
||
|
line-height: 1;
|
||
|
padding-top: 4px;
|
||
|
padding-bottom: 4px;
|
||
|
}
|
||
|
|
||
|
.navbar-action-group {
|
||
|
border: 1px solid #f0f0f0;
|
||
|
border-radius: 20px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.navbar-action_item {
|
||
|
padding: 3px 0;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.navbar-action-group .navbar-action_item {
|
||
|
border-right: 1px solid #f0f0f0;
|
||
|
padding: 3px 14px;
|
||
|
}
|
||
|
|
||
|
.navbar-action-group .last {
|
||
|
border-right: none;
|
||
|
}
|
||
|
.navImg{
|
||
|
width: 15px;
|
||
|
height: 15px;
|
||
|
}
|
||
|
.navImg image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.nav-wrap{
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
top: 0;
|
||
|
background: #fff;
|
||
|
color: #000;
|
||
|
z-index: 9999999;
|
||
|
}
|