Add a page to show delivery rates week-by-week

Implements
https://github.com/alphagov/notifications-api/pull/286

Will always show weeks as Monday to Sunday.
This commit is contained in:
Chris Hill-Scott
2016-05-03 13:25:22 +01:00
parent afc8fb08f3
commit 50427ecd3f
13 changed files with 170 additions and 35 deletions

View File

@@ -24,6 +24,21 @@
color: $white;
position: relative;
&-show-more-link {
@include core-16;
display: block;
padding: 0.75em 0 0.5625em 0;
margin-bottom: $gutter-half;
text-align: center;
border-bottom: 1px solid $border-colour;
&:focus {
outline: none;
color: $text-colour;
border-bottom: 1px solid $brown;
}
}
.big-number {
padding: 15px;
position: relative;

View File

@@ -4,7 +4,7 @@
.table-heading {
text-align: left;
margin: 40px 0 5px 0;
margin: 40px 0 $gutter-half 0;
}
.table-field-headings {
@@ -111,10 +111,10 @@
.table-show-more-link {
@include core-16;
color: $secondary-text-colour;
margin-top: -20px;
margin-top: -30px;
margin-bottom: $gutter * 1.3333;
border-bottom: 1px solid $border-colour;
padding-bottom: 10px;
padding: 0.75em 0 0.5625em 0;
text-align: center;
}