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

49 lines
703 B
SCSS
Raw Normal View History

.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;
}
}