diff --git a/web/apps/cast/src/components/PairedSuccessfullyOverlay.tsx b/web/apps/cast/src/components/PairedSuccessfullyOverlay.tsx index 88f4d7c1f..3e5cd582b 100644 --- a/web/apps/cast/src/components/PairedSuccessfullyOverlay.tsx +++ b/web/apps/cast/src/components/PairedSuccessfullyOverlay.tsx @@ -1,3 +1,4 @@ +import { styled } from "@mui/material"; import { FilledCircleCheck } from "./FilledCircleCheck"; export const PairedSuccessfullyOverlay: React.FC = () => { @@ -44,3 +45,16 @@ export const PairedSuccessfullyOverlay: React.FC = () => { ); }; + +export const PairingSuccessful_ = styled("div")` + position: fixed; + top: 0; + right: 0; + height: 100%; + width: 100%; + display: flex; + justify-content: center; + align-items: center; + z-index: 100; + background-color: black; +`;