Skip to content

Commit 28c6bed

Browse files
committed
fix: tailwindcss mb style
1 parent d83c142 commit 28c6bed

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/components/VideoPlayerV2/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,7 @@ const VideoPlayerV2Inner = observer(
393393

394394
<div
395395
className={classNames(
396-
'p-1 cursor-pointer hover:bg-[#333] rounded-sm transition-colors mb:block',
397-
!props.isReplacerMode && 'hidden',
396+
'p-1 cursor-pointer hover:bg-[#333] rounded-sm transition-colors mb:hidden',
398397
)}
399398
onClick={handleOpenSetting}
400399
>

tailwind.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const config = {
1111
},
1212
screens: {
1313
dp: '768px',
14-
mb: { raw: '((max-height:1024px) or (max-width:768px))' },
14+
mb: { max: '768px' },
1515
},
1616
containers: {
1717
dp: '768px',

0 commit comments

Comments
 (0)