No Description
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.

_avatar.scss 550B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // Avatar
  3. //
  4. // General styles
  5. .avatar {
  6. color: $white;
  7. background-color: $gray-500;
  8. display: inline-flex;
  9. align-items: center;
  10. justify-content: center;
  11. font-size: 1rem;
  12. border-radius: 50%;
  13. height: 48px;
  14. width: 48px;
  15. img {
  16. width: 100%;
  17. border-radius: 50%;
  18. }
  19. + .avatar-content {
  20. display: inline-block;
  21. margin-left: .75rem;
  22. }
  23. }
  24. // Avatar size variations
  25. .avatar-lg {
  26. width: 58px;
  27. height: 58px;
  28. font-size: $font-size-sm;
  29. }
  30. .avatar-sm {
  31. width: 36px;
  32. height: 36px;
  33. font-size: $font-size-sm;
  34. }