mirror of
https://github.com/Unleash/unleash.git
synced 2025-12-21 20:06:40 +01:00
* fix: constraint-related UI fixes * test spans on values list * fix: values truncation, misc UI fixes * fix: no longer assign const variable (debug)
21 lines
522 B
TypeScript
21 lines
522 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
container: {
|
|
width: '100%',
|
|
padding: '1rem',
|
|
fontSize: theme.fontSizes.smallBody,
|
|
backgroundColor: theme.palette.grey[200],
|
|
position: 'relative',
|
|
borderRadius: '5px',
|
|
textAlign: 'center',
|
|
},
|
|
link: {
|
|
textDecoration: 'none',
|
|
fontWeight: theme.fontWeight.bold,
|
|
'&:hover': {
|
|
textDecoration: 'underline',
|
|
},
|
|
},
|
|
}));
|