Skip to content

Commit

Permalink
Merge pull request #348 from ourzora/fix-dao-feed-grid
Browse files Browse the repository at this point in the history
Fix bug with dao feed grid
  • Loading branch information
neokry authored Aug 16, 2023
2 parents f1afc3e + ce1716c commit c5ec767
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/src/modules/dao/components/DaoFeed/DaoFeed.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ export const daoFeedGrid = style([
maxWidth: 'calc(1440px - 2 * 32px)',
'@media': {
'screen and (min-width: 1024px)': {
gridTemplateColumns: 'repeat(3, 1fr)',
gridTemplateColumns: 'repeat(3, 33.33%)',
},
'screen and (min-width: 600px) and (max-width: 1023px)': {
gridTemplateColumns: 'repeat(2, 1fr)',
gridTemplateColumns: 'repeat(2, 50%)',
},
'screen and (max-width: 600px)': {
gridTemplateColumns: 'repeat(1, 1fr)',
gridTemplateColumns: 'repeat(1, 100%)',
},
},
},
Expand Down

2 comments on commit c5ec767

@vercel
Copy link

@vercel vercel bot commented on c5ec767 Aug 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

testnet-nouns-builder – ./apps/web

testnet-nouns-builder-nouns-builder.vercel.app
testnet.nouns.build
testnet-nouns-builder-git-main-nouns-builder.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c5ec767 Aug 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.