0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 19:20:56 +01:00
wagtail/client/scss/components/_summary.scss
Albina 9a7427a589
Incremental dashboard enhancements. Fix #12089 (#12233)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2024-10-14 14:39:39 +01:00

33 lines
593 B
SCSS

.w-summary {
color: theme('colors.text-link-default');
margin-bottom: theme('spacing.3');
padding-top: theme('spacing.1');
.w-summary__list {
@include unlist();
display: flex;
flex-wrap: wrap;
column-gap: theme('spacing.8');
}
/* Summary item */
li {
display: flex;
align-items: center;
flex-wrap: nowrap;
gap: theme('spacing.[2.5]');
margin-bottom: theme('spacing.6');
}
.icon {
@include svg-icon(1.375rem);
color: theme('colors.icon-primary');
}
a {
text-decoration: underline;
text-underline-offset: 3px;
}
}