mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
* fix playground border radius consistency * improve playground alerts * fix: playground segments constraint type logic * fix: refactor segment execution * fix: comments * fix: add summary width * align playground spacing and borders * fix build - ts segment type in playground * fix status cell logic * update playground disabled env info * fix playground filter by status and sort Co-authored-by: Nuno Góis <github@nunogois.com> Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com> Co-authored-by: andreas-unleash <104830839+andreas-unleash@users.noreply.github.com> Co-authored-by: Nuno Góis <github@nunogois.com>
16 lines
425 B
TypeScript
16 lines
425 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
popoverPaper: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
padding: theme.spacing(6),
|
|
width: 728,
|
|
maxWidth: '100%',
|
|
height: 'auto',
|
|
overflowY: 'auto',
|
|
backgroundColor: theme.palette.tertiary.light,
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
|
},
|
|
}));
|