| 12345678910111213141516171819202122 |
- // ========== 颜色配置 ==========
- $primary-color: #0769fb;
- // ========== 尺寸配置 ==========
- $full-size: 100%;
- // ========== Mixin 配置 ==========
- @mixin flex-center {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- // ========== 样式定义 ==========
- .dialog-container {
- width: $full-size;
- height: $full-size;
- background-color: $primary-color;
- @include flex-center;
- margin: 0;
- padding: 0;
- }
|