mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 11:40:11 +03:00
grid: fix gray color on notifs, sidebar menu
Fixes urbit/landscape#1170
This commit is contained in:
parent
50061a72b1
commit
973e642f42
@ -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}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user