Skip to content

Commit

Permalink
Fix feed page responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
RitaDee committed Aug 6, 2023
1 parent 20644ee commit c376ebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const Feeds: WithPageLayout<HighlightSSRProps> = (props: HighlightSSRProps) => {
twitterCard="summary_large_image"
/>
<div className="w-full gap-[2rem] justify-center flex flex-col md:gap-6 xl:gap-16 pt-12 md:flex-row" ref={topRef}>
<div className="flex-col flex-1 hidden gap-6 mt-12 md:flex">
<div className="flex-col flex-1 xl:flex hidden gap-6 mt-12">
{user && (
<div className="md:w-1/2 lg:w-1/3">
<UserCard
Expand Down Expand Up @@ -281,7 +281,7 @@ const Feeds: WithPageLayout<HighlightSSRProps> = (props: HighlightSSRProps) => {
<FollowingHighlightWrapper selectedFilter={selectedRepo} emojis={emojis} />
</TabsContent>
</Tabs>
<div className="hidden gap-6 mt-10 md:flex-1 md:flex md:flex-col">
<div className="md:hidden gap-6 mt-10 md:flex-1 lg:flex md:flex-col">
{repoList && repoList.length > 0 && (
<HighlightsFilterCard
selectedFilter={selectedRepo}
Expand Down

0 comments on commit c376ebf

Please sign in to comment.