doc: add styles in Movie stylesheet
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import { makeStyles } from '@mui/styles';
|
||||
|
||||
export default makeStyles((theme) => ({
|
||||
movie: {
|
||||
padding: '10px',
|
||||
},
|
||||
title: {
|
||||
color: theme.palette.text.primary,
|
||||
textOverflow: 'ellipsis',
|
||||
width: '230px',
|
||||
overflow: 'hidden',
|
||||
whiteSpace: 'nowrap',
|
||||
marginTop: '10px',
|
||||
marginBottom: 0,
|
||||
textAlign: 'center',
|
||||
},
|
||||
links: {
|
||||
alignItems: 'center',
|
||||
fontWeight: 'bolder',
|
||||
textDecoration: 'none',
|
||||
[theme.breakpoints.up('xs')]: {
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
},
|
||||
'&:hover': {
|
||||
cursor: 'pointer',
|
||||
},
|
||||
},
|
||||
image: {
|
||||
borderRadius: '20px',
|
||||
height: '300px',
|
||||
marginBottom: '10px',
|
||||
'&:hover': {
|
||||
transform: 'scale(1.05)',
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user