Merge pull request 'Fix/mobile comparison view' (#41) from fix/mobile-comparison-view into main
Workflow / build (push) Successful in 13s
Workflow / publish (push) Successful in 17s

Reviewed-on: #41
This commit was merged in pull request #41.
This commit is contained in:
2026-05-23 18:21:47 +00:00
3 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -63,5 +63,9 @@ jobs:
- name: Build and Push Docker Image
run: |
docker build -t git.allmy.work/${{ gitea.repository }}:latest .
docker build \
-t git.allmy.work/${{ gitea.repository }}:latest \
-t git.allmy.work/${{ gitea.repository }}:${{ gitea.sha }} \
.
docker push git.allmy.work/${{ gitea.repository }}:latest
docker push git.allmy.work/${{ gitea.repository }}:${{ gitea.sha }}
+1 -1
View File
@@ -74,7 +74,7 @@ onDestroy(() => themeManager.destroy());
<div
id="app-root"
class={cn(
'min-h-screen w-auto flex flex-col bg-surface dark:bg-dark-bg relative',
'min-h-dvh w-auto flex flex-col bg-surface dark:bg-dark-bg relative',
theme === 'dark' ? 'dark' : '',
)}
>
@@ -32,7 +32,7 @@ $effect(() => {
<NavigationWrapper index={0} title="Comparison">
{#snippet content(action)}
<div class="flex h-screen w-full overflow-hidden bg-surface dark:bg-background">
<div class="flex h-dvh w-full overflow-hidden bg-surface dark:bg-background">
<!-- Sidebar -->
<SidebarContainer bind:isOpen={isSidebarOpen}>
{#snippet sidebar()}