mixin.scss 103 B

1234567
  1. // 믹스인
  2. @mixin flex-center {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }