dot-mixin.scss 296 B

1234567891011121314
  1. @mixin dot($size, $color, $marginRight) {
  2. position: relative;
  3. &:before {
  4. position: absolute;
  5. content: '';
  6. display: inline-block;
  7. width: $size;
  8. height: $size;
  9. border-radius: 50%;
  10. background: $color;
  11. margin-right: $marginRight;
  12. vertical-align: middle;
  13. }
  14. }