index.module.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @use "@pythnetwork/component-library/theme";
  2. .notFound {
  3. display: flex;
  4. flex-flow: column nowrap;
  5. gap: theme.spacing(12);
  6. align-items: center;
  7. text-align: center;
  8. padding-top: theme.spacing(8);
  9. padding-bottom: theme.spacing(8);
  10. @include theme.max-width;
  11. @include theme.breakpoint("sm") {
  12. padding-top: theme.spacing(18);
  13. padding-bottom: theme.spacing(18);
  14. }
  15. @include theme.breakpoint("lg") {
  16. padding-top: theme.spacing(36);
  17. padding-bottom: theme.spacing(36);
  18. }
  19. .searchIcon {
  20. display: grid;
  21. place-content: center;
  22. padding: theme.spacing(4);
  23. background: theme.color("button", "disabled", "background");
  24. font-size: theme.spacing(8);
  25. color: theme.color("button", "disabled", "foreground");
  26. border-radius: theme.border-radius("full");
  27. @include theme.breakpoint("sm") {
  28. padding: theme.spacing(8);
  29. font-size: theme.spacing(12);
  30. }
  31. }
  32. .text {
  33. display: flex;
  34. flex-flow: column nowrap;
  35. gap: theme.spacing(4);
  36. align-items: center;
  37. .header {
  38. @include theme.text("5xl", "semibold");
  39. color: theme.color("heading");
  40. }
  41. .subheader {
  42. @include theme.text("xl", "light");
  43. color: theme.color("heading");
  44. }
  45. }
  46. }