diff --git a/src/components/BackgroundImage/BackgroundImage.jsx b/src/components/BackgroundImage/BackgroundImage.jsx index c5ef51b3..ca376452 100644 --- a/src/components/BackgroundImage/BackgroundImage.jsx +++ b/src/components/BackgroundImage/BackgroundImage.jsx @@ -3,7 +3,9 @@ import { styled } from "tamagui"; const BackgroundImage = styled("div", { boxShadow: "inset 100px 0px 100px white", width: "650px", - height: "100vh", + height: "99vh", + borderTopRightRadius: "25px", + borderBottomRightRadius: "25px", }); export { BackgroundImage }; diff --git a/src/components/IconText/IconText.jsx b/src/components/IconText/IconText.jsx index 45fd2945..b7700a73 100644 --- a/src/components/IconText/IconText.jsx +++ b/src/components/IconText/IconText.jsx @@ -1,16 +1,18 @@ import { Paragraph, XStack } from "tamagui"; import { Icon } from "../Icon/Icon"; -const IconText = ({ icon, text }) => { +const IconText = ({ icon, text, ...props }) => { return ( - {text} + + {text} + ); }; diff --git a/src/components/Logo/Logo.jsx b/src/components/Logo/Logo.jsx index 839dca87..8134454e 100644 --- a/src/components/Logo/Logo.jsx +++ b/src/components/Logo/Logo.jsx @@ -10,7 +10,7 @@ const Logo = () => { }} space={"$2"} > - + diff --git a/src/pages/DeviceHealthCheck/DeviceHealthCheck.jsx b/src/pages/DeviceHealthCheck/DeviceHealthCheck.jsx index fd4674b7..60cc3f2c 100644 --- a/src/pages/DeviceHealthCheck/DeviceHealthCheck.jsx +++ b/src/pages/DeviceHealthCheck/DeviceHealthCheck.jsx @@ -1,4 +1,4 @@ -import { XStack, YStack } from "tamagui"; +import { XStack, YStack, styled } from "tamagui"; import { ReactButton } from "../../components/ReactButton"; import { Logo } from "../../components/Logo"; import { InformationBox } from "../../components/InformationBox"; @@ -7,74 +7,110 @@ import { IconText } from "../../components/IconText/IconText"; import { StatisticBox } from "./StatisticBox"; import { BackgroundImage } from "../../components/BackgroundImage"; +const Box = styled("div", { + display: "flex", + justifyContent: "center", + backgroundColor: "white", + width: "100vw", +}); + const DeviceHealthCheck = () => { return ( - - - - - - - asdf - - asdf - - - asdf - asdf - - - + + + + - - - - - + + + + + + + + + + + + + + + + + Continue + + + + - - - Continue - - - - - + + ); };