Files
notifications-admin/app/assets/stylesheets/components/email-message.scss

31 lines
467 B
SCSS
Raw Normal View History

.email-message {
margin-bottom: $gutter;
&-name {
@include bold-19;
margin: 20px 0 10px 0;
}
&-subject,
&-from {
margin: 10px 0;
}
&-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;
}
}