Add letter component

Similar to the components we have for previewing email and text
messages.

Style stolen from PDF thumbnail at
https://www.gov.uk/government/publications/honey-bees
This commit is contained in:
Chris Hill-Scott
2016-11-08 13:08:53 +00:00
parent c3b580b645
commit fb410496dc
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
.letter {
font-family: Helvetica, Arial, sans-serif;
box-shadow: 0 2px 2px rgba($text-colour, 0.4);
outline: 5px solid rgba($text-colour, 0.1);
padding: 20px;
}

View File

@@ -0,0 +1,7 @@
{% macro letter(
body
) %}
<div class="letter">
{{ body }}
</div>
{% endmacro %}