mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
24c11332b5
* refactor: update mui packages * refactor: run mui codemods * refactor: format files after codemods * refactor: fix broken types * refactor: clean up theme * refactor: fix broken tests * refactor: replace @mui/styles with tss-react * refactor: move breakpoints into classes for tss * refactor: fix crash on missing feature description * refactor: remove void classNames * refactor: adjust styles to new defaults * refactor: remove broken rollout slider e2e test * refactor: fix duplicate e2e testid * refactor: update makeStyles after rebase * refactor: add missing snapshot after rebase * refactor: fix TableCellSortable focus styles * refactor: use 1.4 as the default line-height * refactor: hide webkit search field icons * refactor: fix select box label * refactor: make AutocompleteBox smaller * refactor: make heading smaller * refactor: fix toast close icon color * refactor: update snapshots * refactor: add missing test event awaits * refactor: fix default button line-height
50 lines
1023 B
TypeScript
50 lines
1023 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
newUser: {
|
|
width: '350px',
|
|
[theme.breakpoints.down('sm')]: {
|
|
width: '100%',
|
|
},
|
|
},
|
|
title: {
|
|
fontSize: theme.fontSizes.mainHeader,
|
|
marginBottom: '1.25rem',
|
|
textAlign: 'center',
|
|
},
|
|
inviteText: {
|
|
marginBottom: '1rem',
|
|
textAlign: 'center',
|
|
},
|
|
container: {
|
|
display: 'flex',
|
|
},
|
|
roleContainer: {
|
|
marginTop: '2rem',
|
|
},
|
|
innerContainer: {
|
|
width: '60%',
|
|
padding: '4rem 3rem',
|
|
},
|
|
buttonContainer: {
|
|
display: 'flex',
|
|
marginTop: '1rem',
|
|
},
|
|
primaryBtn: {
|
|
marginRight: '8px',
|
|
},
|
|
subtitle: {
|
|
margin: '0.5rem 0',
|
|
},
|
|
passwordHeader: {
|
|
marginTop: '2rem',
|
|
},
|
|
emailField: {
|
|
minWidth: '300px',
|
|
width: '100%',
|
|
[theme.breakpoints.down('sm')]: {
|
|
minWidth: '100%',
|
|
},
|
|
},
|
|
}));
|