Merge pull request #4754 from urbit/mp/landscape/sidebar-100

landscape: sidebar uses black100 for all synced
This commit is contained in:
matildepark 2021-04-12 19:19:04 -04:00 committed by GitHub
commit dbb8cfc9c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,11 +86,7 @@ export function SidebarItem(props: {
let color = 'lightGray';
if (isSynced) {
if (hasUnread || hasNotification) {
color = 'black';
} else {
color = 'gray';
}
}
const fontWeight = (hasUnread || hasNotification) ? '500' : 'normal';