feat: updates

This commit is contained in:
qier222 2022-06-12 15:29:14 +08:00
parent 196a974a64
commit 8f4c3d8e5b
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
24 changed files with 572 additions and 93 deletions

View file

@ -1,4 +1,7 @@
// 动画曲线
export const ease: [number, number, number, number] = [0.4, 0, 0.2, 1]
// 屏幕断点
export const breakpoint = {
sm: '@media (min-width: 640px)',
md: '@media (min-width: 768px)',
@ -6,3 +9,6 @@ export const breakpoint = {
xl: '@media (min-width: 1280px)',
'2xl': '@media (min-width: 1536px)',
}
export const topbarHeight = 132 // 桌面端顶栏高度 (px)
export const playerWidth = 318 // 桌面端播放器宽度 (px)