style.module.css 322 B

1234567891011121314151617181920212223
  1. .appIcon {
  2. @apply flex items-center justify-center relative w-9 h-9 text-lg rounded-lg grow-0 shrink-0;
  3. }
  4. .appIcon.large {
  5. @apply w-10 h-10;
  6. }
  7. .appIcon.small {
  8. @apply w-8 h-8;
  9. }
  10. .appIcon.tiny {
  11. @apply w-6 h-6 text-base;
  12. }
  13. .appIcon.xs {
  14. @apply w-3 h-3 text-base;
  15. }
  16. .appIcon.rounded {
  17. @apply rounded-full;
  18. }