mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
47579e2616
* feat: toggle view * fix: navigation * eat: toggle view * fix: resolve lint * fix: remove console logs * fix: reimplement feature validation
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
container: {
|
|
borderRadius: '12.5px',
|
|
backgroundColor: '#fff',
|
|
padding: '2rem',
|
|
},
|
|
}));
|