pull/46/head
Nolan Lawson 2018-04-01 02:54:40 -07:00
rodzic 642250e50c
commit 64fccee69b
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
<div class="status-header {{isStatusInNotification ? 'status-in-notification' : ''}}">
<div class="status-header {{isStatusInNotification ? 'status-in-notification' : ''}} {{notification && notification.type === 'follow' ? 'header-is-follow' : ''}}">
<div class="status-header-avatar {{timelineType === 'pinned' ? 'hidden' : ''}}">
<Avatar :account size="extra-small"/>
</div>
@ -30,10 +30,13 @@
<style>
.status-header {
grid-area: header;
margin: 5px 10px 5px 5px;
margin: 0 10px 5px 5px;
display: flex;
align-items: center;
}
.status-header.header-is-follow {
margin-bottom: 0; /* standalone, so doesn't need a bottom margin */
}
.status-header-avatar {
margin-left: 19px; /* offset for avatar, 48px - 24px - 5px */