Skip to content

Commit

Permalink
Merge pull request #17 from neozhu/sveltekit
Browse files Browse the repository at this point in the history
Sveltekit
  • Loading branch information
neozhu authored Jan 10, 2024
2 parents 25ee147 + f7b2737 commit 05f97e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/Components/PickWordsForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
<span class="text-error-500">*</span> Please select the words from the list below that are
names of people.
</h6>
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-28">
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-60">
<div class="flex gap-1 flex-wrap">
{#each Object.keys(words) as w}
<button
Expand Down Expand Up @@ -185,7 +185,7 @@
<span class="chip ">firstName lastName</span>
{/if}.
</h6>
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-28">
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-32">
{#if $departments}
<div class="flex gap-1 flex-wrap">
{#each $departments as d}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Components/ResultForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<section class="p-4">
<h6 class="h6 my-1.5" data-toc-ignore="">Below is the recognized information:</h6>
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-40" on:scroll={scrollHandler} on:mousemove={scrollHandler}>
<article class="gap-1 overflow-y-auto focus:overscroll-contain overscroll-auto max-h-70" on:scroll={scrollHandler} on:mousemove={scrollHandler}>
<dl class="list-dl">
{#each records as person}
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Components/SettingClassification.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
</form>

<h6 class="h6 my-1.5" data-toc-ignore="">Classification:</h6>
<div class="overflow-y-auto focus:overscroll-contain overscroll-auto max-h-40">
<div class="overflow-y-auto focus:overscroll-contain overscroll-auto max-h-56">
{#each records as item}
<button
class="chip variant-soft hover:variant-filled mr-1 mb-1"
Expand Down

0 comments on commit 05f97e6

Please sign in to comment.