Skip to content

Commit

Permalink
fix: command autocomplete on portals
Browse files Browse the repository at this point in the history
  • Loading branch information
sprocketc authored and logseq-cldwalker committed Mar 3, 2023
1 parent 5964748 commit 701223d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion tldraw/apps/tldraw-logseq/src/styles.css
Expand Up @@ -718,7 +718,6 @@ button.tl-select-input-trigger {
left: 0;
overscroll-behavior: none;
opacity: 1;
overflow: hidden;
user-select: text;
transform-origin: top left;

Expand Down Expand Up @@ -760,6 +759,10 @@ button.tl-select-input-trigger {
}
}

.tl-logseq-cp-container-bg {
border-radius: 8px;
}

.tl-type-tag {
@apply flex items-center justify-center rounded text-base;

Expand Down
Expand Up @@ -27,14 +27,14 @@ export const SelectionForeground = observer(function SelectionForeground<S exten

return (
<SVGContainer>
<rect
{!app.editingShape && (<rect
className="tl-bounds-fg"
width={Math.max(width, 1)}
height={Math.max(height, 1)}
rx={borderRadius}
ry={borderRadius}
pointerEvents="none"
/>
/>)}
<EdgeHandle
x={targetSize * 2}
y={0}
Expand Down

0 comments on commit 701223d

Please sign in to comment.