Skip to content

Commit 85bffaa

Browse files
[WIKI-695] fix: tippy width fix #7843
1 parent b5ba0a7 commit 85bffaa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/editor/src/core/components/menus/bubble-menu/root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const EditorBubbleMenu: FC<EditorBubbleMenuProps> = (props: { editor: Edi
155155
{!isSelecting && (
156156
<div
157157
ref={menuRef}
158-
className="flex py-2 divide-x divide-custom-border-200 rounded-lg border border-custom-border-200 bg-custom-background-100 shadow-custom-shadow-rg max-w-[500px] overflow-x-scroll horizontal-scrollbar scrollbar-xs"
158+
className="flex py-2 divide-x divide-custom-border-200 rounded-lg border border-custom-border-200 bg-custom-background-100 shadow-custom-shadow-rg overflow-x-scroll horizontal-scrollbar scrollbar-xs"
159159
>
160160
<div className="px-2">
161161
<BubbleMenuNodeSelector

packages/editor/src/styles/editor.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ ul[data-type="taskList"] li[data-checked="true"] {
205205
/* Overwrite tippy-box original max-width */
206206

207207
.tippy-box {
208-
max-width: 600px !important;
208+
max-width: 800px !important;
209209
}
210210

211211
.fade-in {

0 commit comments

Comments
 (0)