Compare commits

..

5 Commits

Author SHA1 Message Date
Viktor Rådberg
c6dd0bc777 eslint 2025-11-17 22:24:07 +01:00
Viktor Rådberg
55c02385b5 fix eslint 2025-11-17 22:04:34 +01:00
Viktor Rådberg
6690a3b256 unauthenticated github request 2025-11-17 21:55:38 +01:00
Viktor Rådberg
c5bb7eb04b upgrade packages and use pnpm instead of bun 2025-11-17 21:51:24 +01:00
Viktor Rådberg
de99c0b7e9 remove unused 2025-11-17 21:39:36 +01:00

View File

@@ -19,10 +19,10 @@ const Container = twc.div<RotationDivProps>((props) => [
]); ]);
export const ExtraCountersGrid = twc.div<RotationDivProps>((props) => [ export const ExtraCountersGrid = twc.div<RotationDivProps>((props) => [
'flex absolute flex-grow pointer-events-none', 'flex absolute flex-row flex-grow pointer-events-none overflow-x-scroll overflow-y-hidden ',
props.$rotation === Rotation.SideFlipped || props.$rotation === Rotation.Side props.$rotation === Rotation.SideFlipped || props.$rotation === Rotation.Side
? 'flex-col h-full w-auto overflow-y-scroll overflow-x-hidden bottom-auto right-0' ? 'flex-col-reverse h-full w-auto bottom-auto right-0'
: 'flex-row w-full overflow-x-scroll overflow-y-hidden bottom-0', : 'w-full bottom-0',
]); ]);
type ExtraCountersBarProps = { type ExtraCountersBarProps = {