Skip to content

Commit

Permalink
Merge pull request #21 from Entrivax/improvement/channelGridElementsP…
Browse files Browse the repository at this point in the history
…erRow

fix(channel): add more elements per row on bigger screens
  • Loading branch information
Zibbp authored Jan 7, 2024
2 parents eef4a18 + f2139d9 commit 1ae3628
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ export default function MyApp({ Component, pageProps }: AppProps) {
md: "64em",
lg: "74em",
xl: "90em",
xxl: "100em"
xxl: "100em",
"3xl": "116em",
"4xl": "130em",
"5xl": "146em",
"6xl": "160em"
},
components: {
Container: Container.extend({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/channels/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ChannelsPage = () => {
<div>
<Container fluid={true}>
<div style={{ marginTop: "1rem" }}>
<SimpleGrid cols={{ base: 1, sm: 4, md: 5, lg: 6 }} spacing="xs" verticalSpacing="xs">
<SimpleGrid cols={{ base: 1, sm: 4, md: 5, lg: 6, xl: 7, xxl: 8, "3xl": 9, "4xl": 10, "5xl": 11, "6xl": 12 }} spacing="xs" verticalSpacing="xs">
{data.map((channel: any) => (
<ChannelCard channel={channel} key={channel.id}></ChannelCard>
))}
Expand Down

0 comments on commit 1ae3628

Please sign in to comment.