2025-02-11 14:58:31 +00:00
|
|
|
@use '../tools' as *;
|
|
|
|
|
2022-07-30 14:03:25 +00:00
|
|
|
.w-summary {
|
2023-04-19 05:58:14 +00:00
|
|
|
color: theme('colors.text-link-default');
|
2024-10-14 13:39:39 +00:00
|
|
|
margin-bottom: theme('spacing.3');
|
|
|
|
padding-top: theme('spacing.1');
|
2022-07-30 14:03:25 +00:00
|
|
|
|
|
|
|
.w-summary__list {
|
|
|
|
@include unlist();
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2024-10-14 13:39:39 +00:00
|
|
|
column-gap: theme('spacing.8');
|
2022-07-30 14:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Summary item */
|
|
|
|
li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: nowrap;
|
2024-10-14 13:39:39 +00:00
|
|
|
gap: theme('spacing.[2.5]');
|
2022-07-30 14:03:25 +00:00
|
|
|
margin-bottom: theme('spacing.6');
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
2024-10-14 13:39:39 +00:00
|
|
|
@include svg-icon(1.375rem);
|
|
|
|
color: theme('colors.icon-primary');
|
2022-07-30 14:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2024-10-14 13:39:39 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
text-underline-offset: 3px;
|
2022-07-30 14:03:25 +00:00
|
|
|
}
|
|
|
|
}
|