Skip to content

Commit

Permalink
refactor: groups page responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
yagopajarino committed Dec 20, 2024
1 parent aa1f434 commit 635c570
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/dashboard/src/pages/groups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default function GroupsPage(): JSX.Element {

<Stack
justifyContent="space-between"
width="100%"
direction={{ base: "column", md: "row" }}
width={{lg: "100%"}}
direction={{ base: "column", lg: "row" }}
spacing={2}
>
<HStack>
Expand Down Expand Up @@ -148,10 +148,10 @@ export default function GroupsPage(): JSX.Element {
templateColumns={{
base: "1fr",
md: "repeat(2, 1fr)",
lg: "repeat(3, 1fr)"
xl: "repeat(3, 1fr)"
}}
gap={10}
w="100%"
w={{md:"100%"}}
mt="60px"
>
{_groups
Expand Down Expand Up @@ -199,10 +199,10 @@ export default function GroupsPage(): JSX.Element {
templateColumns={{
base: "1fr",
md: "repeat(2, 1fr)",
lg: "repeat(3, 1fr)"
xl: "repeat(3, 1fr)"
}}
gap={10}
w="100%"
w={{md:"100%"}}
mt="60px"
>
{_allCredentialGroups
Expand Down

0 comments on commit 635c570

Please sign in to comment.