You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
247 B

  1. @mixin avatar-radius() {
  2. border-radius: 4px;
  3. background: transparent no-repeat;
  4. background-position: 50%;
  5. background-clip: padding-box;
  6. }
  7. @mixin avatar-size($size:48px) {
  8. width: $size;
  9. height: $size;
  10. background-size: $size $size;
  11. }