Skip to content

Commit c4c044c

Browse files
committed
Fix Spacing on Mobile
1 parent f3005c1 commit c4c044c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pages/converters/chatchat/deluxechat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ const Home: NextPage = () => {
6363
</div>
6464
</div>) : (
6565
<>
66-
<div css={tw`h-1/2`}>
66+
<div css={tw`md:h-1/2`}>
6767
<TextBox title={"ChatChat formats.yml"}
6868
code={!parsedConfig ? "" : parsedConfig.format}
6969
language={"yaml"}/>
7070
</div>
71-
<div css={tw`h-1/2`}>
71+
<div css={tw`md:h-1/2`}>
7272
<TextBox title={"ChatChat settings.yml"}
7373
code={!parsedConfig ? "" : parsedConfig.settings}
7474
language={"yaml"}/>

pages/converters/chatchat/essentialschat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ const Home: NextPage = () => {
5555
${tw`w-full md:w-1/2 p-4 pt-1 pr-2 md:max-width[50vw]`}
5656
height: calc(100vh - 15.5em);
5757
`}>
58-
<div css={tw`h-1/2`}>
58+
<div css={tw`md:h-1/2`}>
5959
<TextBox title={"EssentialsChat Config"} code={config} editor={setConfig} language={"yaml"}/>
6060
</div>
61-
<div css={tw`h-1/2`}>
61+
<div css={tw`md:h-1/2`}>
6262
<TextBox title={"EssentialsChat Language File"} code={lang} editor={setLang} language={"properties"}/>
6363
</div>
6464
</div>

pages/converters/chatchat/venturechat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ const Home: NextPage = () => {
6464
</div>) : (
6565
<>
6666
<div css={tw`flex flex-col flex-grow flex-shrink h-full max-w-full`}>
67-
<div css={tw`h-1/2`}>
67+
<div css={tw`md:h-1/2`}>
6868
<TextBox title={"ChatChat formats.yml"}
6969
code={!parsedConfig ? "" : parsedConfig.format}
7070
language={"yaml"}/>
7171
</div>
72-
<div css={tw`h-1/2`}>
72+
<div css={tw`md:h-1/2`}>
7373
<TextBox title={"ChatChat settings.yml"}
7474
code={!parsedConfig ? "" : parsedConfig.settings}
7575
language={"yaml"}/>

0 commit comments

Comments
 (0)