mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
* refactor: fix deprecated prettier config name * refactor: add fmt scripts * refactor: check fmt during CI * refactor: format files
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
listLink: {
|
|
color: '#212121',
|
|
textDecoration: 'none',
|
|
fontWeight: 'normal',
|
|
display: 'block',
|
|
},
|
|
truncate: {
|
|
whiteSpace: 'nowrap',
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
},
|
|
}));
|