Skip to content

Commit 45201b4

Browse files
committed
Give playground-styles.css a distinct name to avoid confusion.
1 parent 03eb964 commit 45201b4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

browser-extension/tests/playground/playground.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from 'react'
22
import { createRoot } from 'react-dom/client'
33
import '@/entrypoints/popup/style.css'
4-
import './style.css'
4+
import './playground-styles.css'
55
import { ClaudePrototype } from './claude'
66
import { Replica } from './replica'
77

@@ -30,11 +30,10 @@ const App = () => {
3030
key={mode}
3131
type='button'
3232
onClick={() => setActiveComponent(mode as Mode)}
33-
className={`px-3 py-2 rounded text-sm font-medium transition-colors ${
34-
activeComponent === mode
35-
? 'bg-blue-600 text-white'
36-
: 'bg-gray-100 text-gray-700 hover:bg-gray-200'
37-
}`}
33+
className={`px-3 py-2 rounded text-sm font-medium transition-colors ${activeComponent === mode
34+
? 'bg-blue-600 text-white'
35+
: 'bg-gray-100 text-gray-700 hover:bg-gray-200'
36+
}`}
3837
>
3938
{config.label}
4039
</button>

0 commit comments

Comments
 (0)