2
0

_summary.scss 593 B

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