mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
The template for viewing a job was not getting all the variables it needed in order to display an email template. Hadn’t noticed this before, because email templates require more variables than SMS templates. This commit fixes that bug.
49 lines
703 B
SCSS
49 lines
703 B
SCSS
.email-message {
|
|
|
|
margin-bottom: $gutter;
|
|
|
|
&-name {
|
|
@include bold-19;
|
|
margin: 20px 0 10px 0;
|
|
}
|
|
|
|
&-meta {
|
|
|
|
@include core-19;
|
|
margin: 0;
|
|
|
|
td,
|
|
th {
|
|
@include core-19;
|
|
border-bottom: 0;
|
|
border-top: 1px solid $border-colour;
|
|
vertical-align: top;
|
|
}
|
|
|
|
th {
|
|
color: $secondary-text-colour;
|
|
}
|
|
|
|
td {
|
|
width: 99%;
|
|
}
|
|
|
|
}
|
|
|
|
&-from {
|
|
padding-top: 15px;
|
|
border-top: 1px solid $border-colour;
|
|
}
|
|
|
|
&-body {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: $gutter-half 0 0 0;
|
|
margin: 0 0 $gutter 0;
|
|
clear: both;
|
|
border-top: 1px solid $border-colour;
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|