Fix awful styling

This commit is contained in:
Regalijan 2023-11-24 02:39:24 -05:00
parent 826a849707
commit c72e33dad6
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -27,13 +27,14 @@ export default function () {
<Textarea <Textarea
id="cookie-box" id="cookie-box"
placeholder="Paste your .ROBLOSECURITY cookie here" placeholder="Paste your .ROBLOSECURITY cookie here"
pt="16px" mt="16px"
style={{ display: showCookieBox ? "initial" : "none" }} style={{ display: showCookieBox ? "initial" : "none" }}
/> />
<Button <Button
colorScheme="blue" colorScheme="blue"
isLoading={loading} isLoading={loading}
loadingText="Processing..." loadingText="Processing..."
mt="16px"
onClick={async () => { onClick={async () => {
setLoading(true); setLoading(true);
const createTransferReq = await fetch("/api/data-transfers/create", { const createTransferReq = await fetch("/api/data-transfers/create", {
@ -67,7 +68,6 @@ export default function () {
((await createTransferReq.json()) as { url: string }).url, ((await createTransferReq.json()) as { url: string }).url,
); );
}} }}
pt="32px"
> >
Continue Continue
</Button> </Button>