@@ -176,7 +176,7 @@ export const MobileComponentsOverview = ({
176
176
const { variants } = useLocalVariants ( ) ;
177
177
const globalVariant = variants . global ;
178
178
return (
179
- < div className = { cn ( "grid grid-cols-10 gap-4 p-4" , className ) } >
179
+ < div className = { cn ( "grid grid-cols-10 gap-3 p-4" , className ) } >
180
180
< div className = "col-span-10" >
181
181
< Slider
182
182
label = "Progress"
@@ -188,25 +188,31 @@ export const MobileComponentsOverview = ({
188
188
</ div >
189
189
< div className = "min-[35rem]:col-span-3 col-span-10 row-span-2 flex justify-between" >
190
190
< RadioGroup >
191
- < Radio value = "email" > Email</ Radio >
192
- < Radio value = "phone" > Phone (SMS)</ Radio >
191
+ < Radio value = "email" >
192
+ < span className = "truncate" > Email</ span >
193
+ </ Radio >
194
+ < Radio value = "phone" >
195
+ < span className = "truncate" > Phone (SMS)</ span >
196
+ </ Radio >
193
197
< Radio value = "notification" >
194
198
< span className = "truncate" > Push notification</ span >
195
199
</ Radio >
196
- < Radio value = "none" > None</ Radio >
200
+ < Radio value = "none" className = "min-[35rem]:flex hidden" >
201
+ None
202
+ </ Radio >
197
203
</ RadioGroup >
198
- < div className = "min-[35rem]:hidden flex flex-col items-end gap-2" >
204
+ < div className = "min-[35rem]:hidden flex flex-col items-end gap-3" >
205
+ < Switch >
206
+ < span className = "truncate" > Focus mode</ span >
207
+ </ Switch >
199
208
< Avatar
200
209
src = "https://github.com/mehdibha.png"
201
210
alt = "@mehdibha"
202
211
fallback = "M"
203
212
/>
204
- < Switch >
205
- < span className = "truncate" > Focus mode</ span >
206
- </ Switch >
207
213
</ div >
208
214
</ div >
209
- < div className = "min-[35rem]:col-span-7 col-span-10 flex flex-wrap items-center justify-end gap-2 " >
215
+ < div className = "min-[35rem]:col-span-7 col-span-10 flex flex-wrap items-center justify-end gap-3 " >
210
216
< Button variant = { globalVariant } > Button</ Button >
211
217
< ToggleButton aria-label = "pin" variant = { globalVariant } >
212
218
< PinIcon />
@@ -230,7 +236,7 @@ export const MobileComponentsOverview = ({
230
236
< SelectItem > ElevenLabs</ SelectItem >
231
237
</ Select >
232
238
</ div >
233
- < div className = "min-[35rem]:flex col-span-7 hidden items-center justify-end gap-2 " >
239
+ < div className = "min-[35rem]:flex col-span-7 hidden items-center justify-end gap-3 " >
234
240
< Avatar
235
241
src = "https://github.com/mehdibha.png"
236
242
alt = "@mehdibha"
@@ -243,7 +249,7 @@ export const MobileComponentsOverview = ({
243
249
< div className = "col-span-10" >
244
250
< DatePicker className = "w-full" />
245
251
</ div >
246
- < div className = "col-span-10 flex items-center gap-2 flex-wrap " >
252
+ < div className = "col-span-10 flex flex-wrap items-center gap-3 " >
247
253
< FileTriggerDemo />
248
254
< ColorPicker defaultValue = "#5100FF" className = "flex-1" />
249
255
< TimeField aria-label = "Event time" className = "flex-1" />
0 commit comments