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({
3636 < >
3737 < Header />
3838 < 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 " >
4141 < div className = "text-center" >
4242 < 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" >
4444 < span className = "font-bold heading-text" >
4545 { repos . total_count }
4646 </ span > { ' ' }
@@ -55,7 +55,7 @@ export default async function ReposPage({
5555 </ div >
5656 < Sorter />
5757 < 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 " >
5959 { repos . items . map ( repo => (
6060 < RepoCard key = { repo . id } repo = { repo } />
6161 ) ) }
@@ -69,6 +69,7 @@ export default async function ReposPage({
6969 </ div >
7070 </ >
7171 ) ;
72+
7273}
7374
7475export async function generateMetadata ( {
You can’t perform that action at this time.
0 commit comments