Skip to content

Commit

Permalink
refactor(website): make the build page responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Nov 9, 2023
1 parent 962bcc9 commit 491bfe5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions apps/website/src/app/build/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ export default function Build() {
<Flex
justify={"center"}
alignItems={"center"}
mt={"125px"}
ml={"80px"}
mr={"188px"}
mb={"109px"}
w={"445px"}
mt={{ base: "120px", xl: "125px" }}
ml={{ base: "32px", xl: "80px" }}
mr={{ base: "32px", xl: "188px" }}
mb={{ base: "120px", xl: "109px" }}
w={{ base: "auto", xl: "445px" }}
>
<VStack alignItems={"left"}>
<Text fontSize={"44px"} fontWeight={"500"}>
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/components/ActionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export default function ActionCard({ title, description, buttonText }: ActionCar
borderRadius={"24px"}
width={{ base: "full", xl: "1110px" }}
height={{ base: "full", xl: "244px" }}
direction={{ base: "column", dm: "row" }}
direction={{ base: "column", xl: "row" }}
>
<CardBody padding={0} m={"41px 80px"}>
<CardBody padding={0} m={{base: "64px 32px", xl: "41px 80px"}}>
<Flex
justifyContent={"space-between"}
alignItems={"center"}
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/ToolsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function ToolsCard({ icon, title, subtitle, details }: ToolsCardP
border={"1px"}
borderColor={"alabaster.950"}
padding={"32px"}
width={{ base: "full", sm: "348px" }}
width={{ base: "full", lg: "348px" }}
height={"501px"}
>
<HStack mb={"2rem"}>{icon}</HStack>
Expand Down

0 comments on commit 491bfe5

Please sign in to comment.