Skip to content

Commit a7e1900

Browse files
committed
Fix UI for mobile views when showing docker images; closes pterodactyl#3186
1 parent 62c08d1 commit a7e1900

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/scripts/components/server/startup/StartupContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ const StartupContainer = () => {
7878
/>
7979
:
8080
<ServerContentBlock title={'Startup Settings'} showFlashKey={'startup:image'}>
81-
<div css={tw`flex`}>
81+
<div css={tw`md:flex`}>
8282
<TitledGreyBox title={'Startup Command'} css={tw`flex-1`}>
8383
<div css={tw`px-1 py-2`}>
8484
<p css={tw`font-mono bg-neutral-900 rounded py-2 px-4`}>
8585
{data.invocation}
8686
</p>
8787
</div>
8888
</TitledGreyBox>
89-
<TitledGreyBox title={'Docker Image'} css={tw`flex-1 lg:flex-none lg:w-1/3 ml-10`}>
89+
<TitledGreyBox title={'Docker Image'} css={tw`flex-1 lg:flex-none lg:w-1/3 mt-8 md:mt-0 md:ml-10`}>
9090
{data.dockerImages.length > 1 && !isCustomImage ?
9191
<>
9292
<InputSpinner visible={loading}>

0 commit comments

Comments
 (0)