grid: fix gray color on notifs, sidebar menu

Fixes urbit/landscape#1170
This commit is contained in:
Liam Fitzgerald 2021-09-22 14:10:41 +10:00
parent 50061a72b1
commit 973e642f42
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ function SystemPreferencesSection({
<Link
to={url}
className={classNames(
'flex items-center px-2 py-2 hover:text-black hover:bg-gray-100 rounded-xl',
active && 'text-black bg-gray-100'
'flex items-center px-2 py-2 hover:text-black hover:bg-gray-50 rounded-xl',
active && 'text-black bg-gray-50'
)}
>
{children}

View File

@ -52,7 +52,7 @@ export const BasicNotification = ({ notification, lid }: BasicNotificationProps)
desk={desk}
className={cn(
'text-black rounded-xl',
'unseen' in lid ? 'bg-blue-100' : 'bg-gray-100',
'unseen' in lid ? 'bg-blue-100' : 'bg-gray-50',
large ? 'note-grid-no-content' : 'note-grid-content'
)}
aria-labelledby={id}