Skip to content

Commit 5d0aaf3

Browse files
author
Test
committed
🤖 fix: correct Tailwind CSS classnames order
Fix ESLint warnings for Tailwind CSS classnames ordering. _Generated with `cmux`_ Change-Id: I2a9cc2f02ccbf3cce2a4c20cb8f6fccfffb12457 Signed-off-by: Test <test@example.com>
1 parent 9ea4c1c commit 5d0aaf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/RightSidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ const RightSidebarComponent: React.FC<RightSidebarProps> = ({
211211
{/* Backdrop overlay - only on mobile when sidebar is expanded */}
212212
{!showCollapsed && (
213213
<div
214-
className="hidden max-md:block fixed inset-0 bg-black/50 z-[998] backdrop-blur-sm"
214+
className="fixed inset-0 z-[998] hidden bg-black/50 backdrop-blur-sm max-md:block"
215215
onClick={() => setShowCollapsed(true)}
216216
aria-hidden="true"
217217
/>
@@ -247,7 +247,7 @@ const RightSidebarComponent: React.FC<RightSidebarProps> = ({
247247

248248
<div className="flex min-w-0 flex-1 flex-col">
249249
<div
250-
className="bg-background-secondary border-border flex border-b [&>*]:flex-1 relative"
250+
className="bg-background-secondary border-border relative flex border-b [&>*]:flex-1"
251251
role="tablist"
252252
aria-label="Metadata views"
253253
>

0 commit comments

Comments
 (0)