button.module.css 582 B

1234567891011121314151617181920212223242526272829303132333435
  1. .icon-button {
  2. background-color: var(--white);
  3. border-radius: 10px;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. padding: 10px;
  8. box-shadow: var(--card-shadow);
  9. cursor: pointer;
  10. transition: all .3s ease;
  11. overflow: hidden;
  12. user-select: none;
  13. }
  14. .border {
  15. border: var(--border-in-light);
  16. }
  17. .icon-button:hover {
  18. filter: brightness(0.9) hue-rotate(0.01turn);
  19. }
  20. .icon-button-icon {
  21. width: 16px;
  22. height: 16px;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. }
  27. .icon-button-text {
  28. margin-left: 5px;
  29. font-size: 12px;
  30. }