Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion fission/src/ui/components/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export const Modal = <T, P>({ children, modal, parent }: ModalElementProps<T, P>
className="select-none"
titleTypographyProps={{ variant: "h5" }}
sx={{
cursor: "move",
py: 1,
px: 2,
borderBottom: theme => `1px solid ${theme.palette.divider}`,
Expand Down
3 changes: 1 addition & 2 deletions fission/src/ui/components/Panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ export const Panel = <T, P>({ children, panel, parent }: PanelElementProps<T, P>
{props.title && (
<CardHeader
title={props.title}
className="panel-drag-handle select-none hover:cursor-grab active:cursor-grabbing"
className="panel-drag-handle select-none cursor-move"
sx={{
cursor: "move",
py: 1,
px: 2,
borderBottom: theme => `1px solid ${theme.palette.divider}`,
Expand Down
Loading