您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

style.module.css 214B

12345678910111213141516171819
  1. .appIcon.large {
  2. @apply w-10 h-10;
  3. }
  4. .appIcon.small {
  5. @apply w-8 h-8;
  6. }
  7. .appIcon.tiny {
  8. @apply w-6 h-6 text-base;
  9. }
  10. .appIcon.xs {
  11. @apply w-3 h-3 text-base;
  12. }
  13. .appIcon.rounded {
  14. @apply rounded-full;
  15. }