Merge pull request #759 from toeverything/feat/ui

Feat/UI
This commit is contained in:
DarkSky
2023-02-01 23:50:02 +08:00
committed by GitHub
2 changed files with 4 additions and 10 deletions
@@ -4,7 +4,7 @@ import Link from 'next/link';
export const StyledSliderBar = styled.div<{ show: boolean }>(
({ theme, show }) => {
return {
width: show ? '320px' : '0',
width: show ? '256px' : '0',
height: '100vh',
background: theme.mode === 'dark' ? '#272727' : '#FBFBFC',
boxShadow: theme.shadow.modal,