租房小程序前端代码
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.

14 lines
481 B

6 months ago
  1. /**
  2. * 下方引入的为uvUI的集成样式文件为scss预处理器其中包含了一些"uv-"开头的自定义变量
  3. * 使用的时候请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  4. * uvUI自定义的css类名和scss变量均以"uv-"开头不会造成冲突请放心使用
  5. * @import '@/uni_modules/uv-ui-tools/theme.scss';
  6. */
  7. .se-grid {
  8. width: 100%;
  9. display: grid;
  10. grid-template-columns: 1fr 1fr 1fr 1fr;
  11. gap: 10rpx;
  12. }