Skip to content

Commit

Permalink
UI: mobile impros
Browse files Browse the repository at this point in the history
  • Loading branch information
dovalid committed Jul 8, 2024
1 parent 749e382 commit 6402c08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/solutions/components/SolutionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,12 @@ const SolutionCard = ({
>
<Stack spacing={3} zIndex={1} justifyContent={"space-between"} h={"100%"}>
<HStack gap={3}>
<Circle size="12" pos="relative" overflow="hidden" bgColor={circleBgColor}>
<Circle
size={{ base: 10, md: 12 }}
pos="relative"
overflow="hidden"
bgColor={circleBgColor}
>
<Image src={imageUrl} alt="Guild logo" fill sizes="3rem" />
</Circle>
<Heading fontSize={"normal"} fontWeight="bold" maxW="full" noOfLines={1}>
Expand Down
2 changes: 1 addition & 1 deletion src/solutions/components/SolutionsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const SolutionsPanel = ({
</Stack>
</ModalHeader>

<ModalBody className="custom-scrollbar" pt="8">
<ModalBody className="custom-scrollbar" pt={{ base: 6, md: 8 }}>
<AnimatePresence>
<Box>
{categories.map((category) => (
Expand Down

0 comments on commit 6402c08

Please sign in to comment.