fix: placeholder size and text overflow on tab head (#3261)

This commit is contained in:
Liyas Thomas
2023-08-18 21:32:10 +05:30
committed by GitHub
parent ce7adf6da3
commit d5c887f311
10 changed files with 22 additions and 13 deletions

View File

@@ -1,6 +1,8 @@
<template>
<div class="autocomplete-wrapper">
<div class="absolute inset-0 flex flex-1 overflow-x-auto">
<div
class="absolute inset-0 flex flex-1 divide-x divide-dividerLight overflow-x-auto"
>
<div
ref="editor"
:placeholder="placeholder"
@@ -10,7 +12,10 @@
@keydown="handleKeystroke"
@focusin="showSuggestionPopover = true"
></div>
<AppInspection :inspection-results="inspectionResults" />
<AppInspection
:inspection-results="inspectionResults"
class="sticky inset-y-0 right-0 bg-primary rounded-r"
/>
</div>
<ul
v-if="showSuggestionPopover && autoCompleteSource"