u-link.wxss 757 B

123456789101112131415161718192021222324
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. /* uni.scss */
  7. view.data-v-dedad317, scroll-view.data-v-dedad317, swiper-item.data-v-dedad317 {
  8. display: flex;
  9. flex-direction: column;
  10. flex-shrink: 0;
  11. flex-grow: 0;
  12. flex-basis: auto;
  13. align-items: stretch;
  14. align-content: flex-start;
  15. }
  16. .u-link.data-v-dedad317 {
  17. line-height: 1;
  18. display: flex;
  19. flex-direction: row;
  20. flex-wrap: wrap;
  21. flex: 1;
  22. }