1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .u-empty.data-v-35f7c3e5,
- .u-empty__wrap.data-v-35f7c3e5,
- .u-tabs.data-v-35f7c3e5,
- .u-tabs__wrapper.data-v-35f7c3e5,
- .u-tabs__wrapper__scroll-view-wrapper.data-v-35f7c3e5,
- .u-tabs__wrapper__scroll-view.data-v-35f7c3e5,
- .u-tabs__wrapper__nav.data-v-35f7c3e5,
- .u-tabs__wrapper__nav__line.data-v-35f7c3e5,
- .up-empty.data-v-35f7c3e5,
- .up-empty__wrap.data-v-35f7c3e5,
- .up-tabs.data-v-35f7c3e5,
- .up-tabs__wrapper.data-v-35f7c3e5,
- .up-tabs__wrapper__scroll-view-wrapper.data-v-35f7c3e5,
- .up-tabs__wrapper__scroll-view.data-v-35f7c3e5,
- .up-tabs__wrapper__nav.data-v-35f7c3e5,
- .up-tabs__wrapper__nav__line.data-v-35f7c3e5 {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-overlay.data-v-35f7c3e5 {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.7);
- }
|