Skip to content

Commit

Permalink
Merge branch 'cmgriffing:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
xcrap authored Oct 23, 2024
2 parents d071ed4 + 6180b40 commit 625e7ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playgrounds/app/src/components/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,13 +280,13 @@ export default function Editor(props: EditorProps) {
</div>
</div>

<div class="dark:bg-[#27272a] dark:bg-background bg-gray-100 p-2 rounded-b flex flex-row flex-wrap md:flex-nowrap gap-2">
<div class="dark:bg-[#27272a] bg-gray-100 p-2 rounded-b flex flex-row flex-wrap md:flex-nowrap gap-2">
<TextField class="w-full md:w-1/2" value={startCode} onChange={setStartCode}>
<TextFieldLabel>Start Code</TextFieldLabel>
<TextFieldTextArea class="h-[400px]" placeholder="Type your message here." />
</TextField>

<TextField class="md:w-1/2" value={endCode} onChange={setEndCode}>
<TextField class="w-full md:w-1/2" value={endCode} onChange={setEndCode}>
<TextFieldLabel>End Code</TextFieldLabel>
<TextFieldTextArea class="h-[400px]" placeholder="Type your message here." />
</TextField>
Expand Down

0 comments on commit 625e7ae

Please sign in to comment.