_summary.scss 616 B

12345678910111213141516171819202122232425262728293031323334
  1. @use '../tools' as *;
  2. .w-summary {
  3. color: theme('colors.text-link-default');
  4. margin-bottom: theme('spacing.3');
  5. padding-top: theme('spacing.1');
  6. .w-summary__list {
  7. @include unlist();
  8. display: flex;
  9. flex-wrap: wrap;
  10. column-gap: theme('spacing.8');
  11. }
  12. /* Summary item */
  13. li {
  14. display: flex;
  15. align-items: center;
  16. flex-wrap: nowrap;
  17. gap: theme('spacing.[2.5]');
  18. margin-bottom: theme('spacing.6');
  19. }
  20. .icon {
  21. @include svg-icon(1.375rem);
  22. color: theme('colors.icon-primary');
  23. }
  24. a {
  25. text-decoration: underline;
  26. text-underline-offset: 3px;
  27. }
  28. }