mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
* refactor: page container * refactor: table page header * feat: new feature toggles list in project overview * feat: sortable enviromnents in project overview * feat: project overview toggles search * feat: project overview features column actions * project overview table column sizing * project overview feature actions permissions * project overview archive feature action * project overview toggle state strategy fallback * remove previous project overview implementation * fix: remove additional prop in sortable table * fix: stale feature refetch * improvements after review * feat: manage visible columns in project overview * improve project overview columns selection * fix: simplify columns * Revert "remove previous project overview implementation" This reverts commit 98b051ff6a5a4fb8a9a0921b661514e15a00249a. * restore legacy project overview table
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
menuContainer: {
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
|
padding: theme.spacing(1),
|
|
},
|
|
item: {
|
|
borderRadius: theme.shape.borderRadius,
|
|
},
|
|
text: {
|
|
fontSize: theme.fontSizes.smallBody,
|
|
},
|
|
}));
|