variables.scss 266 B

123456789101112131415
  1. // 主题颜色
  2. $primary-color: #1777ff;
  3. $background-color: rgba(#1777ff, 0.1);
  4. $error-color: #e74c3c;
  5. $text-color: #000;
  6. $white-color: #fff;
  7. $disabled-color: #ccc;
  8. // 混合
  9. @mixin flex-center {
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }