Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix awful styling
  • Loading branch information
regalijan committed Nov 24, 2023
1 parent 826a849 commit c72e33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/data-transfer_.start.tsx
Expand Up @@ -27,13 +27,14 @@ export default function () {
<Textarea
id="cookie-box"
placeholder="Paste your .ROBLOSECURITY cookie here"
pt="16px"
mt="16px"
style={{ display: showCookieBox ? "initial" : "none" }}
/>
<Button
colorScheme="blue"
isLoading={loading}
loadingText="Processing..."
mt="16px"
onClick={async () => {
setLoading(true);
const createTransferReq = await fetch("/api/data-transfers/create", {
Expand Down Expand Up @@ -67,7 +68,6 @@ export default function () {
((await createTransferReq.json()) as { url: string }).url,
);
}}
pt="32px"
>
Continue
</Button>
Expand Down

0 comments on commit c72e33d

Please sign in to comment.