I am using Material UI 5 in a new project and I need to style an ul item.
I am trying to style the ul item using the sx prop, but it doesn't work, my code is the following:
<ul
sx={{
padding: "0 0",
listStyle: "none",
display: "grid",
gap: "30px",
gridTemplateColumns: "repeat(2, 1fr)",
}}
>
what should I do?
Thanks in advance.