Skip to content

Commit fe67e2c

Browse files
authored
Fix: gh finder modal
Fix/gh finder modal
2 parents 16b61f5 + 945c147 commit fe67e2c

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/app/gh-finder/modal.jsx

+9-6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ const style = {
1010
top: "50%",
1111
left: "50%",
1212
transform: "translate(-50%, -50%)",
13-
width: 600,
14-
height: 300,
13+
width: "90%",
14+
maxWidth: 600,
15+
height: 400,
1516
border: "2px solid #000",
1617
boxShadow: 24,
1718
p: 4,
@@ -61,15 +62,17 @@ export default function BasicModal({
6162
viewBox="0 0 24 24"
6263
strokeWidth="2"
6364
stroke="currentColor"
64-
className="h-6 w-6 text-gray-500"
65+
className="h-4 w-4 md:w-6 md:h-6 text-gray-500"
6566
>
6667
<path
6768
strokeLinecap="round"
6869
strokeLinejoin="round"
6970
d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2a1 1 0 01-.293.707L14 12.414V18a1 1 0 01-.553.894l-4 2A1 1 0 018 20v-7.586L3.293 6.707A1 1 0 013 6V4z"
7071
/>
7172
</svg>
72-
<Button onClick={handleOpen}>Filter</Button>
73+
<Button onClick={handleOpen} className="sm:!text-sm !text-[12px]">
74+
Filter
75+
</Button>
7376
</Button>
7477
<Modal
7578
open={open}
@@ -79,11 +82,11 @@ export default function BasicModal({
7982
>
8083
<Box
8184
sx={style}
82-
className={`${
85+
className={`sm:!h-[300px] ${
8386
isDarkMode ? "bg-slate-800 text-white" : "bg-slate-200 text-black"
8487
}`}
8588
>
86-
<FormGroup>
89+
<FormGroup className="!grid sm:grid-cols-2">
8790
{labelsList.map((label, idx) => (
8891
<FormControlLabel
8992
key={idx}

src/app/gh-finder/page.jsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,9 @@ export default function GhFinder() {
264264
</div>
265265
</div>
266266

267-
<div className="flex justify-between w-full my-5 items-center">
267+
<div className="flex gap-1.5 md:gap-3 w-full my-5 items-center justify-center">
268268
<button
269-
className={`w-full md:w-1/3 px-5 py-3 md:py-4
270-
text-sm font-medium rounded-full transition-all duration-200 ease-in-out
269+
className={`md:w-1/3 px-2.5 md:px-5 py-3 md:py-4 sm:text-sm text-[12px] font-medium rounded-full transition-all duration-200 ease-in-out
271270
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
272271
${
273272
selected === 1
@@ -280,8 +279,7 @@ export default function GhFinder() {
280279
Web Dev Tools Issues
281280
</button>
282281
<button
283-
className={`w-full md:w-1/3 px-5 py-3 md:py-4
284-
text-sm font-medium rounded-full transition-all duration-200 ease-in-out
282+
className={`md:w-1/3 px-4 py-3 md:py-4 sm:text-sm text-[12px] font-medium rounded-full transition-all duration-200 ease-in-out
285283
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
286284
${
287285
selected === 2

0 commit comments

Comments
 (0)