index.module.scss 784 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @use "../theme";
  2. .infoBox {
  3. grid-column: span 2 / span 2;
  4. background: theme.color("states", "info", "background");
  5. padding: theme.spacing(4);
  6. border-radius: theme.border-radius("xl");
  7. display: flex;
  8. flex-flow: row nowrap;
  9. gap: theme.spacing(1);
  10. .icon {
  11. flex: none;
  12. font-size: theme.spacing(6);
  13. color: theme.color("states", "info", "icon");
  14. }
  15. .body {
  16. display: flex;
  17. flex-flow: column nowrap;
  18. gap: theme.spacing(2);
  19. padding: 0 theme.spacing(2);
  20. .header {
  21. @include theme.text("base", "medium");
  22. color: theme.color("heading");
  23. line-height: theme.spacing(6);
  24. }
  25. .contents {
  26. @include theme.text("sm", "normal");
  27. color: theme.color("paragraph");
  28. line-height: theme.spacing(6);
  29. }
  30. }
  31. }