app.css 541 B

12345678910111213141516171819202122232425262728293031323334
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. *::-webkit-scrollbar {
  5. width: 6px;
  6. }
  7. *::-webkit-scrollbar-thumb {
  8. border-radius: 3px;
  9. background-color: rgba(133, 133, 133, 0.3);
  10. }
  11. *::-webkit-scrollbar-track {
  12. background-color: rgba(133, 133, 133, 0.1);
  13. }
  14. html {
  15. overflow-y: overlay;
  16. -webkit-tap-highlight-color: transparent;
  17. scrollbar-width: none; /* Firefox */
  18. }
  19. body::-webkit-scrollbar {
  20. display: none;
  21. }
  22. body {
  23. -ms-overflow-style: none;
  24. }
  25. * {
  26. -webkit-overflow-scrolling: touch;
  27. }
  28. button:focus {
  29. outline: none;
  30. }