Some more minor design updates

pull/16/head
ClaraCrazy 2024-09-28 01:58:17 +02:00
parent e79d1bad49
commit 3016f0fc34
2 changed files with 10 additions and 1 deletions

View File

@ -6,7 +6,9 @@ body {
min-height: 100vh;
background-color: #131516;
color: #cccccc;
overflow: hidden;
}
main {
flex: 1; /* keep footer at the bottom */
}
@ -129,3 +131,8 @@ input, textarea, select, select:active, select:focus, select:hover {
flex: 1;
font-size: 1.3rem;
}
.mail_attachments {
width: 80%;
padding-left:10%
}

View File

@ -45,6 +45,7 @@
{% endif %}
{% if mail.attachments %}
<div class="mail_attachments" >
<p>Download your attachments: (SoonTM)
{% for attachment in mail.attachments %}
<a href="">📎 {{ attachment.filename }}</a>
{#
@ -53,6 +54,7 @@
very basic, like regular links look. maybe a paperclip icon
#}
{% endfor %}
</p>
</div>
{% endif %}