We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74af467 commit 066b320Copy full SHA for 066b320
src/GZCTF/ClientApp/src/components/ChallengePanel.tsx
@@ -237,10 +237,12 @@ const ChallengePanel: FC = () => {
237
))}
238
</SimpleGrid>
239
) : (
240
- <Stack spacing={0} pt="20vh" w="20em" m="auto">
241
- <Title order={2}>{t('game.content.all_solved.title')}</Title>
242
- <Text>{t('game.content.all_solved.comment')}</Text>
243
- </Stack>
+ <Center h="calc(100vh - 10rem)">
+ <Stack spacing={0}>
+ <Title order={2}>{t('game.content.all_solved.title')}</Title>
+ <Text>{t('game.content.all_solved.comment')}</Text>
244
+ </Stack>
245
+ </Center>
246
)}
247
</ScrollArea>
248
{game?.writeupRequired && (
0 commit comments