mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 02:08:25 -04:00
Fix overridden padding on email subject
Something in a new version of GOV.UK Elements, Template, or Frontend Toolkit has introduced a rules which removes padding for the last column in a table. This is undesirable in the case of email message previews.
This commit is contained in:
@@ -26,9 +26,15 @@ $email-message-gutter: $gutter * 2;
|
|||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
|
|
||||||
width: 99%;
|
width: 99%;
|
||||||
padding-right: $email-message-gutter;
|
padding-right: $email-message-gutter;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
padding-right: $email-message-gutter;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user