Skip to content

Commit

Permalink
fix: scrollbar design and overflow (#561)
Browse files Browse the repository at this point in the history
* fix: scrollbar design and overflow

Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>

* revert: css changes

Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>

---------

Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>
  • Loading branch information
axel7083 committed Mar 19, 2024
1 parent 8461cf5 commit c8fc8f1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Applications.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const openApplicationCatalog = () => {
<NavPage title="AI Apps" searchEnabled="{false}">
<div slot="content" class="flex flex-col min-w-full min-h-full">
<div class="min-w-full min-h-full flex-1">
<div class="mt-4 px-5 space-y-5 h-full">
<div class="mt-4 px-5 space-y-5">
{#if data.length > 0}
<Table kind="AI App" data="{data}" columns="{columns}" row="{row}"></Table>
{:else}
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/InferenceServerDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $: service = $inferenceServers.find(server => server.container.containerId === c
<svelte:fragment slot="content">
<div slot="content" class="flex flex-col min-w-full min-h-full">
<div class="min-w-full min-h-full flex-1">
<div class="mt-4 px-5 space-y-5 h-full">
<div class="mt-4 px-5 space-y-5">
{#if service !== undefined}
<!-- container details -->
<div class="bg-charcoal-800 rounded-md w-full px-4 pt-2 pb-4">
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/InferenceServers.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $: data = $inferenceServers;
<svelte:fragment slot="content">
<div slot="content" class="flex flex-col min-w-full min-h-full">
<div class="min-w-full min-h-full flex-1">
<div class="mt-4 px-5 space-y-5 h-full">
<div class="mt-4 px-5 space-y-5">
{#if data.length > 0}
<Table kind="service" data="{data}" columns="{columns}" row="{row}"></Table>
{:else}
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Models.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ onMount(() => {
<svelte:fragment slot="content">
<div slot="content" class="flex flex-col min-w-full min-h-full">
<div class="min-w-full min-h-full flex-1">
<div class="mt-4 px-5 space-y-5 h-full">
<div class="mt-4 px-5 space-y-5">
{#if !loading}
{#if pullingTasks.length > 0}
<Card classes="bg-charcoal-800 mt-4">
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Recipes.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $: categories = $catalog.categories;
<NavPage title="Recipe Catalog" searchEnabled="{false}">
<div slot="content" class="flex flex-col min-w-full min-h-full">
<div class="min-w-full min-h-full flex-1">
<div class="px-5 space-y-5 h-full">
<div class="px-5 space-y-5">
<!-- Recent recipes -->
<RecipesCard
category="{{ id: RECENT_CATEGORY_ID, name: 'Recently-viewed recipes' }}"
Expand Down

0 comments on commit c8fc8f1

Please sign in to comment.