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.
25 lines
761 B
25 lines
761 B
@import "./mixin.scss";
|
|
|
|
/* #ifndef APP-NVUE */
|
|
// 由于uview-plus是基于nvue环境进行开发的,此环境中普通元素默认为flex-direction: column;
|
|
// 所以在非nvue中,需要对元素进行重置为flex-direction: column; 否则可能会表现异常
|
|
// 2024-04-09由于微信小程序会提示 Some selectors are not allowed in component wxss所以注释以下几行
|
|
// view,
|
|
// scroll-view,
|
|
// swiper-item,
|
|
.u-empty,
|
|
.u-empty__wrap,
|
|
.u-tabs,
|
|
.u-tabs__wrapper,
|
|
.u-tabs__wrapper__scroll-view-wrapper,
|
|
.u-tabs__wrapper__scroll-view,
|
|
.u-tabs__wrapper__nav,
|
|
.u-tabs__wrapper__nav__line {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
flex-basis: auto;
|
|
align-items: stretch;
|
|
align-content: flex-start;
|
|
}
/* #endif */
|