File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
colab-webapp/src/main/node/app/src/components/projects Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { DiscreetInput } from '../common/element/Input';
2020import { MainMenuLink } from '../common/element/Link' ;
2121import IllustrationDisplay from '../common/element/illustration/IllustrationDisplay' ;
2222import Flex from '../common/layout/Flex' ;
23- import Icon from '../common/layout/Icon' ;
23+ import Icon , { IconSize } from '../common/layout/Icon' ;
2424import Monkeys from '../debugger/monkey/Monkeys' ;
2525import { ProjectDeletedBanner } from './ProjectDeletedBanner' ;
2626import { useIsProjectReadOnly } from './projectRightsHooks' ;
@@ -102,7 +102,11 @@ export function ProjectNav({ project }: ProjectNavProps): JSX.Element {
102102 < IllustrationDisplay
103103 illustration = { project . illustration }
104104 iconSize = "xs"
105- containerClassName = { cx ( br_md , p_xs ) }
105+ containerClassName = { cx (
106+ br_md ,
107+ p_xs ,
108+ css ( { width : IconSize . xs + 'px' , height : IconSize . xs + 'px' } ) ,
109+ ) }
106110 />
107111 < DiscreetInput
108112 value = { project . name || '' }
You can’t perform that action at this time.
0 commit comments