Skip to content

Commit bc4664b

Browse files
committed
💄 Fix some styles with lang selector in dark mode
1 parent 870884b commit bc4664b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/repl.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ export const Repl: Component<ReplProps> = (props) => {
316316
fallback={<span>.{tab.type}</span>}
317317
>
318318
<select
319-
class="bg-none p-0"
319+
class="dark:bg-gray-700 bg-none p-0"
320320
value={tab.type}
321-
onChange={(e) => {
321+
onBlur={(e) => {
322322
setEdit(-1);
323323
actions.setTabType(id(tab), e.currentTarget.value);
324324
}}

0 commit comments

Comments
 (0)