Skip to content

Commit

Permalink
App 6327 searchable select font size (viamrobotics#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrloureed authored Sep 26, 2024
1 parent d4d639a commit 804a562
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-core",
"version": "0.0.154",
"version": "0.0.155",
"repository": {
"type": "git",
"url": "https://github.com/viamrobotics/prime.git",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/lib/select/searchable-select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ const handleKeydown = createHandleKey({
name={option.icon}
/>
{/if}
<div class="flex flex-col [overflow-wrap:anywhere]">
<p class="text-sm">
<div class="flex flex-col text-xs [overflow-wrap:anywhere]">
<p>
{#if highlight !== undefined}
{@const [prefix, match, suffix] = highlight}
{prefix}<span class="bg-yellow-100">{match}</span>{suffix}
Expand All @@ -418,7 +418,7 @@ const handleKeydown = createHandleKey({
{#if option.description}
<p
id={descriptionID}
class="text-xs text-subtle-2"
class=" text-subtle-2"
>
{option.description}
</p>
Expand Down

0 comments on commit 804a562

Please sign in to comment.