mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 12:08:25 -04:00
Scanning the page is difficult at the moment because it’s hard to tell how far apart in time events are, and thereby determine which events might be related. Grouping the events by day quickly lets users narrow their focus to a meaningful subset of the events.
30 lines
413 B
SCSS
30 lines
413 B
SCSS
$item-top-padding: $gutter-half;
|
|
|
|
.history-list {
|
|
|
|
@include core-19;
|
|
margin-bottom: $gutter;
|
|
|
|
&-item {
|
|
|
|
padding: $item-top-padding 0 $gutter-half 0;
|
|
border-top: 1px solid $border-colour;
|
|
position: relative;
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|
|
|
|
&-user {
|
|
display: block;
|
|
}
|
|
|
|
&-time {
|
|
display: block;
|
|
color: $secondary-text-colour;
|
|
}
|
|
|
|
}
|