u-album.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. /* uni.scss */
  7. view.data-v-6fcabaad, scroll-view.data-v-6fcabaad, swiper-item.data-v-6fcabaad {
  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-album.data-v-6fcabaad {
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. .u-album__row.data-v-6fcabaad {
  21. display: flex;
  22. flex-direction: row;
  23. flex-wrap: wrap;
  24. }
  25. .u-album__row__wrapper.data-v-6fcabaad {
  26. position: relative;
  27. }
  28. .u-album__row__wrapper__text.data-v-6fcabaad {
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. right: 0;
  33. bottom: 0;
  34. background-color: rgba(0, 0, 0, 0.3);
  35. display: flex;
  36. flex-direction: row;
  37. justify-content: center;
  38. align-items: center;
  39. }