1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-20 12:53:06 +02:00

Overflow auto

This commit is contained in:
binwiederhier 2023-06-28 20:17:49 -04:00
parent 3f42e0e945
commit 8e1e0b3740

View file

@ -787,7 +787,7 @@ const Tokens = () => {
}} }}
/> />
</Paragraph> </Paragraph>
<div style={{ width: "100%", overflowX: "scroll" }}>{tokens?.length > 0 && <TokensTable tokens={tokens} />}</div> <div style={{ width: "100%", overflowX: "auto" }}>{tokens?.length > 0 && <TokensTable tokens={tokens} />}</div>
</CardContent> </CardContent>
<CardActions> <CardActions>
<Button onClick={handleCreateClick}>{t("account_tokens_table_create_token_button")}</Button> <Button onClick={handleCreateClick}>{t("account_tokens_table_create_token_button")}</Button>