dialog.scss 440 B

12345678910111213141516171819202122
  1. // ========== 颜色配置 ==========
  2. $primary-color: #0769fb;
  3. // ========== 尺寸配置 ==========
  4. $full-size: 100%;
  5. // ========== Mixin 配置 ==========
  6. @mixin flex-center {
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11. // ========== 样式定义 ==========
  12. .dialog-container {
  13. width: $full-size;
  14. height: $full-size;
  15. background-color: $primary-color;
  16. @include flex-center;
  17. margin: 0;
  18. padding: 0;
  19. }