mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-10 01:19:53 +01:00
* fix: segments table author column width * fix: update feature form ui * fix: strategies breadcrumbs * fix: api token page title * fix: deprecated strategy label color * fix: project access remove user toast * fix: addon enable toast message * fix: ces from ui * fix: ui improvements with dialog typography * fix: revert ces * fix: change password error type
37 lines
798 B
TypeScript
37 lines
798 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
container: {
|
|
fontWeight: theme.fontWeight.thin,
|
|
},
|
|
form: {
|
|
display: 'grid',
|
|
gap: '3rem',
|
|
gridTemplateColumns: 'minmax(auto, 40rem)',
|
|
justifyContent: 'center',
|
|
},
|
|
title: {
|
|
all: 'unset',
|
|
display: 'block',
|
|
textAlign: 'center',
|
|
color: theme.palette.text.secondary,
|
|
},
|
|
subtitle: {
|
|
all: 'unset',
|
|
display: 'block',
|
|
marginTop: '2.5rem',
|
|
fontSize: '1.5rem',
|
|
textAlign: 'center',
|
|
},
|
|
textLabel: {
|
|
display: 'block',
|
|
marginBottom: '0.5rem',
|
|
},
|
|
buttons: {
|
|
textAlign: 'center',
|
|
},
|
|
button: {
|
|
minWidth: '15rem',
|
|
},
|
|
}));
|