app.css 634 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* stylelint-disable at-rule-no-unknown */
  2. @tailwind base;
  3. @tailwind components;
  4. @tailwind utilities;
  5. view {
  6. box-sizing: border-box;
  7. text-decoration: none;
  8. letter-spacing: 0.5px;
  9. }
  10. [hidden] {
  11. display: none !important;
  12. }
  13. image {
  14. display: block;
  15. height: auto;
  16. }
  17. button {
  18. position: relative;
  19. box-sizing: border-box;
  20. padding: 0;
  21. margin: 0;
  22. overflow: hidden;
  23. line-height: normal;
  24. text-align: center;
  25. text-decoration: none;
  26. background-color: #f8f8f8;
  27. border: unset;
  28. border-radius: 0;
  29. -webkit-tap-highlight-color: transparent;
  30. &::after {
  31. width: auto;
  32. height: auto;
  33. border: unset;
  34. }
  35. }