feat: improve the gridview presentation
This commit is contained in:
		| @@ -12,17 +12,17 @@ export default function MenuDrawer({ zone = 'public', open, onClose }) { | ||||
|  | ||||
|   return ( | ||||
|     <Drawer anchor="left" open={open} onClose={onClose} slotProps={{ | ||||
|         paper: { | ||||
|           sx: { | ||||
|             backgroundColor: '#000000a0', | ||||
|             width: isMobile ? '100vw' : 250, | ||||
|           }, | ||||
|       paper: { | ||||
|         sx: { | ||||
|           backgroundColor: '#000000a0', | ||||
|           width: isMobile ? '100vw' : 250, | ||||
|         }, | ||||
|       }}> | ||||
|      <List sx={{ width: isMobile ? '100vw' : 250, marginTop: 14 }}> | ||||
|       }, | ||||
|     }}> | ||||
|       <List sx={{ width: isMobile ? '100vw' : 250, marginTop: 14 }}> | ||||
|         {items.map((text, index) => ( | ||||
|           <ListItem key={index} onClick={onClose}> | ||||
|              <ListItemText | ||||
|             <ListItemText | ||||
|               primary={text} | ||||
|               slotProps={{ | ||||
|                 primary: { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Rodolfo Ruiz
					Rodolfo Ruiz