合同小程序前端代码仓库
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.

13 lines
200 B

  1. @mixin flex {
  2. /* #ifndef UNI-APP-X */
  3. display: flex;
  4. /* #endif */
  5. }
  6. @mixin flex-column {
  7. /* #ifndef UNI-APP-X */
  8. flex-direction: column;
  9. /* #endif */
  10. }
  11. @mixin flex-row {
  12. flex-direction: row;
  13. }