Skip to content

Commit

Permalink
Merge pull request #3846 from ProjectMirador/mui5-border-state
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne authored Dec 7, 2023
2 parents ac7f634 + b4aca3a commit 08143b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ManifestListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ export class ManifestListItem extends Component {
sx={theme => ({
'&:hover,&:focus-within': {
backgroundColor: theme.palette.action.hover,
borderLeftColor: active ? theme.palette.action.hover : theme.palette.primary.main,
borderLeftColor: active ? theme.palette.primary.main : theme.palette.action.hover,
},
borderLeft: '4px solid',
borderLeftColor: active ? 'transparent' : theme.palette.primary.main,
borderLeftColor: active ? theme.palette.primary.main : 'transparent',
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(2),
[theme.breakpoints.up('sm')]: {
Expand Down

0 comments on commit 08143b3

Please sign in to comment.