app.css 491 B

1234567891011121314151617181920212223
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer components {
  5. .temp-icon {
  6. width: 48px;
  7. height: 48px;
  8. display: inline-block;
  9. background-size: cover;
  10. background-image: url("../images/icon-temp.svg");
  11. }
  12. .active {
  13. .temp-icon {
  14. background-image: url("../images/icon-temp-active.svg");
  15. }
  16. &.temp-icon {
  17. background-image: url("../images/icon-temp-active.svg");
  18. }
  19. }
  20. }