Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: center filter alignment on large screen #3630

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/blog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function BlogIndexPage() {
<TextLink href='/rss.xml'> RSS Feed</TextLink>, too!
</Paragraph>
</div>
<div className='mx:64 mt-12 md:flex md:justify-center lg:justify-start'>
<div className='mx:64 mt-12 md:flex md:justify-center lg:justify-center'>
<Filter
data={navItems || []}
onFilter={onFilter}
Expand Down
2 changes: 1 addition & 1 deletion pages/community/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default function CommunityIndexPage() {
/>
</div>
<div className='mt-10 flex justify-center'>
<div className='m-5 p-8 bg-gray-100 rounded-lg shadow-md w-full max-w-6xl'>
<div className='m-5 w-full max-w-6xl rounded-lg bg-gray-100 p-8 shadow-md'>
<div className='w-full'>
<Card
type={CardType.SMALL}
Expand Down
Loading