File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/app/(public)/repos/[language] Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ export default async function ReposPage({
36
36
< >
37
37
< Header />
38
38
< ScrollToTop />
39
- < div className = "container mx-auto mt-32" >
40
- < div className = "min-h-screen pt-5" >
39
+ < div className = "container mx-auto px-4 mt-16 md: mt-32" >
40
+ < div className = "min-h-screen pt-5 sm:pt-8 md:pt-12 " >
41
41
< div className = "text-center" >
42
42
< div className = "w-5/6 max-w-md mx-auto" >
43
- < h1 className = "mb-5 text-5xl font-medium uppercase text-hacktoberfest-light" >
43
+ < h1 className = "mb-5 text-3xl sm:text-4xl md:text- 5xl font-medium uppercase text-hacktoberfest-light" >
44
44
< span className = "font-bold heading-text" >
45
45
{ repos . total_count }
46
46
</ span > { ' ' }
@@ -55,7 +55,7 @@ export default async function ReposPage({
55
55
</ div >
56
56
< Sorter />
57
57
< StarsFilter />
58
- < div className = "grid grid-cols-1 gap-8 p-4 md :grid-cols-2 lg :grid-cols-3" >
58
+ < div className = "grid grid-cols-1 gap-8 p-4 sm :grid-cols-2 md :grid-cols-3 lg:grid-cols-4 " >
59
59
{ repos . items . map ( repo => (
60
60
< RepoCard key = { repo . id } repo = { repo } />
61
61
) ) }
@@ -69,6 +69,7 @@ export default async function ReposPage({
69
69
</ div >
70
70
</ >
71
71
) ;
72
+
72
73
}
73
74
74
75
export async function generateMetadata ( {
You can’t perform that action at this time.
0 commit comments