mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
73 lines
1.4 KiB
Plaintext
73 lines
1.4 KiB
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
.van-nav-bar {
|
|
position: relative;
|
|
text-align: center;
|
|
user-select: none;
|
|
.theme(height, '@nav-bar-height');
|
|
.theme(line-height, '@nav-bar-height');
|
|
.theme(background-color, '@nav-bar-background-color');
|
|
|
|
&__content {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
&__text {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
.theme(margin, '0 -@padding-md');
|
|
.theme(padding, '0 @padding-md');
|
|
.theme(color, '@nav-bar-text-color');
|
|
|
|
&--hover {
|
|
.theme(background-color, '@active-color');
|
|
}
|
|
}
|
|
|
|
&__arrow {
|
|
vertical-align: middle;
|
|
.theme(font-size, '@nav-bar-arrow-size') !important;
|
|
.theme(color, '@nav-bar-icon-color') !important;
|
|
|
|
+ .van-nav-bar__text {
|
|
margin-left: -20px;
|
|
padding-left: 25px;
|
|
}
|
|
}
|
|
|
|
&--fixed {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
&__title {
|
|
max-width: 60%;
|
|
margin: 0 auto;
|
|
.theme(color, '@nav-bar-title-text-color');
|
|
.theme(font-weight, '@font-weight-bold');
|
|
.theme(font-size, '@nav-bar-title-font-size');
|
|
}
|
|
|
|
&__left,
|
|
&__right {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
.theme(font-size, '@font-size-md');
|
|
}
|
|
|
|
&__left {
|
|
.theme(left, '@padding-md');
|
|
}
|
|
|
|
&__right {
|
|
.theme(right, '@padding-md');
|
|
}
|
|
}
|