fix drag handle visibility (#868)

This commit is contained in:
Philip Okugbe
2025-03-12 13:17:59 +00:00
committed by GitHub
parent fea6518352
commit 1f40e9b960
5 changed files with 21 additions and 9 deletions

View File

@ -47,7 +47,7 @@
"react-router-dom": "^7.0.1",
"socket.io-client": "^4.8.1",
"tippy.js": "^6.3.7",
"tiptap-extension-global-drag-handle": "^0.1.16",
"tiptap-extension-global-drag-handle": "^0.1.18",
"zod": "^3.23.8"
},
"devDependencies": {

View File

@ -32,7 +32,7 @@ export function FullEditor({
return (
<Container
fluid={fullPageWidth}
size={!fullPageWidth && 850}
size={!fullPageWidth && 900}
className={classes.editor}
>
<MemoizedTitleEditor

View File

@ -12,6 +12,18 @@
font-weight: 400;
width: 100%;
padding-left: 3rem;
padding-right: 3rem;
@media (max-width: $mantine-breakpoint-sm) {
padding-left: 1rem;
padding-right: 1rem;
}
@media print {
padding: 0;
}
> * + * {
margin-top: 0.75em;
}

View File

@ -1,7 +1,7 @@
.editor {
height: 100%;
padding: 8px 20px;
margin: 64px auto;
padding: 8px 0;
margin: 48px auto;
@media print {
padding: 0;