mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-08-31 11:17:27 +00:00
fix(command-palette): tweak invisible spacer sizing
Previously, we had changed the padding and font size of HeaderInput.svelte without updating the invisible spacer used for the placeholder. This commit addresses the issue.
This commit is contained in:
parent
629d57bcb4
commit
ba63d094cf
1 changed files with 3 additions and 3 deletions
|
@ -147,8 +147,8 @@
|
|||
/>
|
||||
|
||||
{#if selectedQuicklinkForArgument}
|
||||
<div class="pointer-events-none absolute top-0 left-0 flex h-full w-full items-center">
|
||||
<span class="whitespace-pre text-transparent"
|
||||
<div class="pointer-events-none absolute top-0 left-0 flex h-full w-full items-center pl-4">
|
||||
<span class="text-lg whitespace-pre text-transparent"
|
||||
>{searchText || selectedQuicklinkForArgument.name}</span
|
||||
>
|
||||
<span class="w-2"></span>
|
||||
|
@ -162,7 +162,7 @@
|
|||
</span>
|
||||
|
||||
<Input
|
||||
class="col-start-1 row-start-1 h-7 w-full"
|
||||
class="border-border col-start-1 row-start-1 h-7 w-full"
|
||||
placeholder="Query"
|
||||
bind:value={quicklinkArgument}
|
||||
bind:ref={argumentInputEl}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue