fix: command autocomplete on portals

pull/8758/head
Konstantinos Kaloutas 2023-03-02 16:28:31 +02:00 committed by Gabriel Horner
parent 59647482fa
commit 701223d7d0
2 changed files with 6 additions and 3 deletions

View File

@ -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;
@ -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;

View File

@ -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}