79151313

Date: 2024-11-02 18:08:14
Score: 1
Natty:
Report link

In makeStyles you should define

  card: {
    width: '360px',
    maxWidth: '100%',
    height: 'fit-content',
    '& .buttonContainer': {
      visibility: 'hidden',
    },
    ':hover': {
      '& .buttonContainer': {
        visibility: 'visible',
      },
    },
  },

and the button container should have the class buttonContainer

Working code: https://stackblitz.com/edit/ff53e2-zpmwug?file=src%2Fexample.tsx

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: regdos