Skip to content

Commit

Permalink
fix: small styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed Oct 23, 2024
1 parent 05d956f commit 6180b40
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 6180b40

Please sign in to comment.