We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eada03 commit a1395f4Copy full SHA for a1395f4
1 file changed
apps/sim/components/emcn/components/modal/modal.tsx
@@ -157,11 +157,11 @@ const ModalContent = React.forwardRef<
157
<ModalOverlay />
158
<div
159
className='pointer-events-none fixed inset-0 z-[var(--z-modal)] flex items-center justify-center'
160
- style={
161
- isWorkflowPage
162
- ? { paddingLeft: 'calc(var(--sidebar-width) - var(--panel-width))' }
163
- : undefined
164
- }
+ style={{
+ paddingLeft: isWorkflowPage
+ ? 'calc(var(--sidebar-width) - var(--panel-width))'
+ : 'var(--sidebar-width)',
+ }}
165
>
166
<DialogPrimitive.Content
167
ref={ref}
0 commit comments