mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	* feat: change color scheme * feat: add navigation menu * fix: add bg image * fix: add archive and strategies to navigation * fix: round corners * feat: mobile view project details * feat: mobile view navigation * fix: only show menu if user is admin * fix: rename navigation * fix: only render relevant routes for oss context * feat: add project actions * feat: add icons * feat: add breadcrumbs * fix: place breadcrumbs absolutely * fix: adjust breadcrumbs * fix: toast * fix: cleanup * fix login * fix: breadcrumbs * fix: add billing link * fix: links * fix: feature view * fix: path to go back * fix: remove default value * fix: remove unused imports * refactor: delete outdated test * fix: add item to filter in breadcrumb * fix: remove console log
		
			
				
	
	
		
			36 lines
		
	
	
		
			724 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			724 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { makeStyles } from '@material-ui/core/styles';
 | |
| 
 | |
| export const useStyles = makeStyles(theme => ({
 | |
|     tableRow: {
 | |
|         cursor: 'pointer',
 | |
|     },
 | |
|     tableCell: {
 | |
|         border: 'none',
 | |
|         padding: '0.25rem 0',
 | |
|     },
 | |
|     tableCellHeader: {
 | |
|         paddingBottom: '0.5rem',
 | |
|     },
 | |
|     typeHeader: {
 | |
|         [theme.breakpoints.down('sm')]: {
 | |
|             display: 'none',
 | |
|         },
 | |
|     },
 | |
|     tableCellName: {
 | |
|         width: '250px',
 | |
|     },
 | |
|     tableCellEnv: {
 | |
|         width: '20px',
 | |
|     },
 | |
|     tableCellType: {
 | |
|         display: 'flex',
 | |
|         alignItems: 'center',
 | |
|         [theme.breakpoints.down('sm')]: {
 | |
|             display: 'none',
 | |
|         },
 | |
|     },
 | |
|     icon: {
 | |
|         marginRight: '0.3rem',
 | |
|     },
 | |
| }));
 |