Skip to content

Commit

Permalink
Merge pull request #96 from Sherlockouo/wdf_dev
Browse files Browse the repository at this point in the history
fix: fix mask color
  • Loading branch information
Sherlockouo authored Jan 14, 2024
2 parents d535a0e + 605aedf commit df6ca04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web/components/Topbar/SettingsButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const SettingsButton = ({ className }: { className?: string }) => {
<button
onClick={() => navigate('/settings')}
className={cx(
'app-region-no-drag flex h-12 w-12 items-center justify-center rounded-full bg-white/60 text-neutral-500 transition transition duration-400 duration-400 hover:bg-white dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-100',
'app-region-no-drag flex h-12 w-12 items-center justify-center rounded-full bg-white/60 text-neutral-500 transition duration-400 hover:bg-white dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-100',
className
)}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/web/pages/My/Collections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const Collections = () => {
const { librarySelectedTab: selectedTab } = useSnapshot(persistedUiStates)
return (
<motion.div>
<CollectionTabs className='sticky top-[100px] z-10 w-full backdrop-blur-lg py-5 h-20'/>
<CollectionTabs className='sticky top-[100px] z-10 w-full bg-[#F6F6F6] dark:bg-[#000] backdrop-blur-lg pb-5 pt-7 h-20 '/>
<div className={cx('px-2.5 pt-10 lg:px-0')}>
{selectedTab === 'daily' && <Daily />}
{selectedTab === 'albums' && <Albums />}
Expand Down

0 comments on commit df6ca04

Please sign in to comment.