Some more minor design updates
parent
e79d1bad49
commit
3016f0fc34
|
@ -6,7 +6,9 @@ body {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
background-color: #131516;
|
background-color: #131516;
|
||||||
color: #cccccc;
|
color: #cccccc;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
flex: 1; /* keep footer at the bottom */
|
flex: 1; /* keep footer at the bottom */
|
||||||
}
|
}
|
||||||
|
@ -129,3 +131,8 @@ input, textarea, select, select:active, select:focus, select:hover {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mail_attachments {
|
||||||
|
width: 80%;
|
||||||
|
padding-left:10%
|
||||||
|
}
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if mail.attachments %}
|
{% if mail.attachments %}
|
||||||
<div class="mail_attachments" >
|
<div class="mail_attachments" >
|
||||||
|
<p>Download your attachments: (SoonTM)
|
||||||
{% for attachment in mail.attachments %}
|
{% for attachment in mail.attachments %}
|
||||||
<a href="">📎 {{ attachment.filename }}</a>
|
<a href="">📎 {{ attachment.filename }}</a>
|
||||||
{#
|
{#
|
||||||
|
@ -53,6 +54,7 @@
|
||||||
very basic, like regular links look. maybe a paperclip icon
|
very basic, like regular links look. maybe a paperclip icon
|
||||||
#}
|
#}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue