fix: Right sidebar header should be draggable on desktop

This commit is contained in:
Tom Moor
2023-04-13 22:14:18 -04:00
parent facf7cb19a
commit 515f5e8e73

View File

@@ -10,6 +10,7 @@ import Flex from "~/components/Flex";
import Scrollable from "~/components/Scrollable";
import Tooltip from "~/components/Tooltip";
import useMobile from "~/hooks/useMobile";
import { draggableOnDesktop } from "~/styles";
import { fadeIn } from "~/styles/animations";
type Props = React.HTMLAttributes<HTMLDivElement> & {
@@ -87,6 +88,7 @@ const Title = styled(Flex)`
`;
const Header = styled(Flex)`
${draggableOnDesktop()}
align-items: center;
position: relative;
padding: 16px 12px 16px 16px;