mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 03:23:09 +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
|
<Link
|
||||||
to={url}
|
to={url}
|
||||||
className={classNames(
|
className={classNames(
|
||||||
'flex items-center px-2 py-2 hover:text-black hover:bg-gray-100 rounded-xl',
|
'flex items-center px-2 py-2 hover:text-black hover:bg-gray-50 rounded-xl',
|
||||||
active && 'text-black bg-gray-100'
|
active && 'text-black bg-gray-50'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
@ -52,7 +52,7 @@ export const BasicNotification = ({ notification, lid }: BasicNotificationProps)
|
|||||||
desk={desk}
|
desk={desk}
|
||||||
className={cn(
|
className={cn(
|
||||||
'text-black rounded-xl',
|
'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'
|
large ? 'note-grid-no-content' : 'note-grid-content'
|
||||||
)}
|
)}
|
||||||
aria-labelledby={id}
|
aria-labelledby={id}
|
||||||
|
Loading…
Reference in New Issue
Block a user