Skip to content

Commit

Permalink
Merge pull request #102 from Sherlockouo/fix-index-tag
Browse files Browse the repository at this point in the history
fix: fix & beautify index tag
  • Loading branch information
Sherlockouo authored Jan 19, 2024
2 parents c3aa540 + f3da803 commit 349765c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/desktop/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Main {
},
width: store.get('window.width'),
height: store.get('window.height'),
minWidth: 1240,
minWidth: 1260,
minHeight: 800,
titleBarStyle: 'hidden',
trafficLightPosition: { x: 18, y: 20 },
Expand Down
2 changes: 1 addition & 1 deletion packages/web/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const Layout = () => {
className={cx(
// mask will affect the borde radius
window.env?.isElectron && !fullscreen && 'rounded-12',
'absolute inset-0 z-0',
'absolute inset-0 z-0 backdrop-blur-xl',
theme === 'dark' ? 'bg-black/40' : 'bg-white/40'
)}
/>
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 @@ -159,7 +159,7 @@ const Collections = () => {
const { librarySelectedTab: selectedTab } = useSnapshot(persistedUiStates)
return (
<motion.div>
<CollectionTabs className='sticky top-[100px] z-10 w-full bg-[#F6F6F6] dark:bg-[#000] backdrop-blur-lg pb-5 pt-7 h-20 '/>
<CollectionTabs className='sticky top-[100px] p-1 rounded-bl-lg rounded-br-lg z-10 w-full backdrop-blur-lg pb-5 pt-7'/>
<div className={cx('px-2.5 pt-10 lg:px-0')}>
{selectedTab === 'daily' && <Daily />}
{selectedTab === 'albums' && <Albums />}
Expand Down

0 comments on commit 349765c

Please sign in to comment.