style.module.css 286 B

123456789101112131415
  1. .appIcon {
  2. @apply flex items-center justify-center relative w-9 h-9 text-lg bg-teal-100 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.rounded {
  14. @apply rounded-full;
  15. }