mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-14 23:08:07 -04:00
It’s possible that users will have email and SMS templates with similar names, and will send them depending on their users’ contact preferences. So it’s useful to be able to compare how many emails vs SMS you’re sending, even if the template names are similar.
50 lines
856 B
SCSS
50 lines
856 B
SCSS
.dashboard {
|
|
table th {
|
|
font-size: 0;
|
|
}
|
|
}
|
|
|
|
.keyline-block {
|
|
border-top: 1px solid $border-colour;
|
|
padding-top: $gutter-half;
|
|
}
|
|
|
|
.spark-bar {
|
|
|
|
@include core-16;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
width: 100%;
|
|
text-align: right;
|
|
margin-bottom: $gutter-half;
|
|
height: $gutter-half;
|
|
color: $govuk-blue;
|
|
text-align: left;
|
|
color: $govuk-blue;
|
|
|
|
span {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
background: $govuk-blue;
|
|
color: $white;
|
|
height: $gutter-half;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
margin: 3px 0 5px 0;
|
|
transition: width 0.6s ease-in-out;
|
|
}
|
|
|
|
&-label {
|
|
@include bold-19;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
color: $govuk-blue;
|
|
max-width: 100%;
|
|
background: $white;
|
|
margin-bottom: $gutter;
|
|
}
|
|
|
|
}
|