mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 13:48:02 +00:00
feat: updates
This commit is contained in:
parent
ffcc60b793
commit
dd5361b8c4
106 changed files with 11989 additions and 4143 deletions
23
packages/web/components/New/Main.tsx
Normal file
23
packages/web/components/New/Main.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { css, cx } from '@emotion/css'
|
||||
import Router from './Router'
|
||||
|
||||
const Main = () => {
|
||||
return (
|
||||
<main
|
||||
className={cx(
|
||||
'overflow-y-auto pb-16 pr-6 pl-10',
|
||||
css`
|
||||
padding-top: 132px;
|
||||
grid-area: main;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
)}
|
||||
>
|
||||
<Router />
|
||||
</main>
|
||||
)
|
||||
}
|
||||
|
||||
export default Main
|
||||
Loading…
Add table
Add a link
Reference in a new issue