Looking to customize the appearance of ListItem
in material-ui.
My list of elements is populated and then returned to a Popover
.
elms.push(<ListItem key={i} primaryText={obj[i].title} onTouchTap={this.addGeotag.bind(this, obj[i])}/>)
Adding style={{line-height:"5"}}
to ListItem
works well.
Now, I want to utilize @media max-width: ...
for different screen sizes such as 850px, 1200px, ...
Any suggestions on how to accomplish this?