ui(admin): fix container width on server startup

This commit is contained in:
Matthew Penner 2021-10-23 12:31:30 -06:00
parent 3b5fa34d85
commit 336923ec18
No known key found for this signature in database
GPG key ID: BAB67850901908A8

View file

@ -63,7 +63,7 @@ function ServerServiceContainer ({ egg, setEgg, server }: { egg: Egg | null, set
const [ nestId, setNestId ] = useState(server.nestId);
return (
<AdminBox title={'Service Configuration'} isLoading={isSubmitting}>
<AdminBox title={'Service Configuration'} isLoading={isSubmitting} css={tw`w-full`}>
<div css={tw`mb-6`}>
<NestSelector selectedNestId={nestId} onNestSelect={setNestId}/>
</div>