Avatar.scss 296 B

12345678910111213141516
  1. @import "../css/variables.module";
  2. .excalidraw {
  3. .Avatar {
  4. width: 2.5rem;
  5. height: 2.5rem;
  6. border-radius: 1.25rem;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. color: $oc-white;
  11. cursor: pointer;
  12. font-size: 0.8rem;
  13. font-weight: 500;
  14. }
  15. }