Here is the code snippet I am working with:
<TableCell sx={{ borderBottom: { xs: 0, lg: 1 } }}>
<Typography variant="body2">{account.name} ({account.currency})</Typography>
</TableCell>
I am facing an issue where the custom styling overrides the default styling on large screens:
/*border-bottom: 1px solid rgba(224, 224, 224, 1);*/
The custom styling is as follows:
border-bottom: 1px solid;
I want to revert back to the default styling on large screens without specifying a specific borderBottomColor. Is there a way to achieve this by adjusting the sx property? Any guidance on this topic would be greatly appreciated.
Unfortunately, the documentation does not provide much information about this https://mui.com/system/getting-started/the-sx-prop/