diff --git a/web/apps/cast/src/components/PairingComplete.tsx b/web/apps/cast/src/components/PairingComplete.tsx index 3d56ace85..6681ccb64 100644 --- a/web/apps/cast/src/components/PairingComplete.tsx +++ b/web/apps/cast/src/components/PairingComplete.tsx @@ -4,31 +4,14 @@ import { FilledCircleCheck } from "./FilledCircleCheck"; export const PairingComplete: React.FC = () => { return ( -
+ -

- Pairing Complete -

-

+

Pairing Complete

+

We're preparing your album.
This should only take a few seconds.

-
+
); }; @@ -38,4 +21,17 @@ const PairingComplete_ = styled("div")` min-height: 100svh; justify-content: center; align-items: center; + + line-height: 1.5rem; + + h2 { + margin-block-end: 0; + } +`; + +const Items = styled("div")` + display: flex; + flex-direction: column; + align-items: center; + text-align: center; `;