Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit ffc4243

Browse files
fix: repos page header to single line (#10173)
Co-authored-by: Eddie Jaoude <[email protected]>
1 parent 6188338 commit ffc4243

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pages/repos.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ export default function Repos({ repos }) {
4949
/>
5050

5151
<Page>
52-
<h1 className="text-4xl mb-4 font-bold">Community Repos</h1>
53-
<div className=" flex justify-end">
52+
<div className="flex flex-col items-center justify-between sm:flex-row mb-2">
53+
<h1 className="text-4xl mb-2 font-bold sm:mb-0">Community Repos</h1>
5454
<Select
5555
name="event-type"
5656
value={router.query.sortBy || "favourites"}
@@ -62,7 +62,7 @@ export default function Repos({ repos }) {
6262
label: option.label,
6363
value: option.value,
6464
}))}
65-
className="inline text-center text-sm font-medium leading-6 text-primary-high sm:pt-1.5"
65+
className="inline text-center text-sm font-medium leading-6 text-primary-high mb-0"
6666
/>
6767
</div>
6868
<UserRepos repos={repos} />

0 commit comments

Comments
 (0)