feat(messaging): show last read message divider

This commit is contained in:
Paul
2021-12-24 14:32:04 +00:00
parent 46c652d54c
commit 3d723574f4
5 changed files with 25 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ const Base = styled.div<{ unread?: boolean }>`
margin-top: -2px;
font-size: 0.6875rem;
line-height: 0.6875rem;
padding: 2px 0 2px 0;
padding-inline-start: 5px;
padding-inline-end: 5px;
color: var(--tertiary-foreground);
background: var(--primary-background);
@@ -30,7 +30,8 @@ const Base = styled.div<{ unread?: boolean }>`
const Unread = styled.div`
background: var(--accent);
color: white;
padding: 5px 8px;
font-size: 7px;
padding: 2px 6px;
border-radius: 60px;
font-weight: 600;
`;