global.web.css 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. html,
  2. body {
  3. min-height: 100%;
  4. margin: 0;
  5. }
  6. * {
  7. scrollbar-width: none;
  8. -ms-overflow-style: none;
  9. }
  10. ::-webkit-scrollbar {
  11. display: none;
  12. width: 0;
  13. height: 0;
  14. }
  15. body {
  16. min-height: 100vh;
  17. background:
  18. radial-gradient(circle at top, rgba(96, 165, 250, 0.18), transparent 32%),
  19. linear-gradient(180deg, #172554 0%, #0f172a 55%, #020617 100%);
  20. }
  21. #root {
  22. max-width: 448px;
  23. margin: 0 auto;
  24. background: #ffffff;
  25. }
  26. @media (min-width: 448px) {
  27. #root {
  28. min-height: 100vh;
  29. overflow: hidden;
  30. border-radius: 24px;
  31. border: 1px solid rgba(255, 255, 255, 0.08);
  32. box-shadow:
  33. 0 36px 90px rgba(2, 6, 23, 0.46),
  34. 0 18px 34px rgba(15, 23, 42, 0.28),
  35. inset 0 1px 0 rgba(255, 255, 255, 0.9),
  36. inset 0 -1px 0 rgba(15, 23, 42, 0.06);
  37. }
  38. }