File tree 2 files changed +12
-11
lines changed
2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ const style = {
10
10
top : "50%" ,
11
11
left : "50%" ,
12
12
transform : "translate(-50%, -50%)" ,
13
- width : 600 ,
14
- height : 300 ,
13
+ width : "90%" ,
14
+ maxWidth : 600 ,
15
+ height : 400 ,
15
16
border : "2px solid #000" ,
16
17
boxShadow : 24 ,
17
18
p : 4 ,
@@ -61,15 +62,17 @@ export default function BasicModal({
61
62
viewBox = "0 0 24 24"
62
63
strokeWidth = "2"
63
64
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"
65
66
>
66
67
< path
67
68
strokeLinecap = "round"
68
69
strokeLinejoin = "round"
69
70
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"
70
71
/>
71
72
</ svg >
72
- < Button onClick = { handleOpen } > Filter</ Button >
73
+ < Button onClick = { handleOpen } className = "sm:!text-sm !text-[12px]" >
74
+ Filter
75
+ </ Button >
73
76
</ Button >
74
77
< Modal
75
78
open = { open }
@@ -79,11 +82,11 @@ export default function BasicModal({
79
82
>
80
83
< Box
81
84
sx = { style }
82
- className = { `${
85
+ className = { `sm:!h-[300px] ${
83
86
isDarkMode ? "bg-slate-800 text-white" : "bg-slate-200 text-black"
84
87
} `}
85
88
>
86
- < FormGroup >
89
+ < FormGroup className = "!grid sm:grid-cols-2" >
87
90
{ labelsList . map ( ( label , idx ) => (
88
91
< FormControlLabel
89
92
key = { idx }
Original file line number Diff line number Diff line change @@ -264,10 +264,9 @@ export default function GhFinder() {
264
264
</ div >
265
265
</ div >
266
266
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" >
268
268
< 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
271
270
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
272
271
${
273
272
selected === 1
@@ -280,8 +279,7 @@ export default function GhFinder() {
280
279
Web Dev Tools Issues
281
280
</ button >
282
281
< 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
285
283
border border-transparent focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2
286
284
${
287
285
selected === 2
You can’t perform that action at this time.
0 commit comments