Icons.scss 451 B

12345678910111213141516171819202122232425262728293031
  1. .icon_bg{
  2. width: 40px;
  3. height: 40px;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. position: relative;
  8. }
  9. .plus_bg{
  10. position: absolute;
  11. left: 0;
  12. top: 0;
  13. width: 40px;
  14. height: 40px;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .minus {
  20. width: 24px;
  21. height: 4px;
  22. border-radius: 2px;
  23. }
  24. .plus{
  25. height: 24px;
  26. width: 4px;
  27. border-radius: 2px;
  28. }