userInfo.scss 602 B

1234567891011121314151617181920212223242526272829303132333435
  1. .userAvatar {
  2. background-color: grey;
  3. width: 100px;
  4. height: 100px;
  5. font-size: 14;
  6. margin: 20px auto;
  7. }
  8. .active {
  9. background-color:rgb(30, 8, 62);
  10. }
  11. .mobileUsersInfoBox {
  12. position: absolute;
  13. top: 100px;
  14. left: 10px;
  15. z-index: 10;
  16. transition: all 1s;
  17. transform: translate(-100%);
  18. transition: all 1s;
  19. max-width: 100px;
  20. }
  21. .pcUsersAvatar {
  22. background-color: grey;
  23. width: 80px !important;
  24. height: 80px !important; //need to change in classlist styles
  25. margin: 20px auto;
  26. cursor: pointer;
  27. }
  28. .mobileAvatar {
  29. margin: 5px auto
  30. };