mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 00:07:02 -04:00
This replaces the slider with an integer input for each provider. Unfortunately showing a variable number of inputs isn't easy to achieve in WTForms [^1], but we think this is the least worst way to do it vs e.g. not using WTForms at all. [^1]: https://github.com/wtforms/wtforms/issues/736
33 lines
481 B
SCSS
33 lines
481 B
SCSS
$item-top-padding: govuk-spacing(3);
|
|
|
|
.history-list {
|
|
|
|
@include core-19;
|
|
margin-bottom: govuk-spacing(6);
|
|
|
|
&-item {
|
|
|
|
padding: $item-top-padding 0 govuk-spacing(3) 0;
|
|
border-top: 1px solid $border-colour;
|
|
position: relative;
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
.page-footer {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
}
|
|
|
|
&-user {
|
|
display: block;
|
|
}
|
|
|
|
&-time {
|
|
display: block;
|
|
color: $secondary-text-colour;
|
|
}
|
|
}
|