Skip to content

Commit 2409d95

Browse files
AppSelectionDropdown changes
1 parent 85e24fb commit 2409d95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/AppSelectionDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function PlatformWelcomeDropdown(props: AppSelectionDropdownProps
1616
<Menu.Button>
1717
<Tooltip color="invert" content="Kern AI" placement="right">
1818
<div
19-
className='cursor-pointer group flex items-center p-2 text-sm font-medium rounded-md border border-gray-200 hover:bg-gray-50'
19+
className={`cursor-pointer group flex items-center p-2 text-sm font-medium rounded-md border ${props.gates ? '' : 'border-gray-200 hover:bg-gray-50'}`}
2020
>
2121
<Image src={kernLogo} width="32" height="32" alt='Kern' />
2222
</div>
@@ -33,7 +33,7 @@ export default function PlatformWelcomeDropdown(props: AppSelectionDropdownProps
3333
leaveFrom="transform opacity-100 scale-100"
3434
leaveTo="transform opacity-0 scale-95"
3535
>
36-
<Menu.Items className="fixed bottom-[74px] left-20 z-50 w-40 rounded-md bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none">
36+
<Menu.Items className="fixed z-50 w-40 rounded-md bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none" style={{ bottom: '74px', left: '80px' }}>
3737
<div className="py-1">
3838
{props.cockpit ? (
3939
<Menu.Item>

0 commit comments

Comments
 (0)