Mailbox empty state styling (#750)

This commit is contained in:
Adam Mills 2017-12-23 12:06:34 -05:00 committed by GitHub
parent 440145ab1b
commit e7df8cb195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,11 @@
cursor: pointer; cursor: pointer;
} }
.empty {
text-align: center;
color: var(--secondary-text-color);
}
.header { .header {
@apply(--paper-font-title); @apply(--paper-font-title);
} }
@ -99,7 +104,7 @@
<div class='content'> <div class='content'>
<paper-card> <paper-card>
<template is='dom-if' if='[[!_messages.length]]'> <template is='dom-if' if='[[!_messages.length]]'>
<div class='card-content'> <div class='card-content empty'>
[[localize('ui.panel.mailbox.empty')]] [[localize('ui.panel.mailbox.empty')]]
</div> </div>
</template> </template>