small css fixes
authorPhiTux <redacted>
Fri, 3 Oct 2025 10:05:05 +0000 (12:05 +0200)
committerPhiTux <redacted>
Fri, 3 Oct 2025 10:05:05 +0000 (12:05 +0200)
frontend/src/lib/Sidenav.svelte

index 7900888f3f47fe18d94575825c32358ef5006f2c..0601147049016a4f5e37a9f7dd0e66c8edfdb57d 100644 (file)
@@ -13,6 +13,7 @@
        import axios from 'axios';
        import { cal } from '$lib/calendarStore.js';
        import { getTranslate, getTolgee } from '@tolgee/svelte';
+       import { slide } from 'svelte/transition';
 
        const { t } = getTranslate();
        const tolgee = getTolgee(['language']);
                                        {:else}
                                                <div class="touch-tag-grid gap-1">
                                                        {#each filteredTags as tag (tag.id)}
-                                                               <button
-                                                                       type="button"
-                                                                       class="touch-tag-item btn btn-sm"
-                                                                       onclick={() => selectSearchTag(tag.id)}
-                                                               >
+                                                               <button type="button" class="btn btn-sm" onclick={() => selectSearchTag(tag.id)}>
                                                                        <Tag {tag} />
                                                                </button>
                                                        {/each}
 
        .touch-search-tag-panel {
                padding: 0.5rem 0.6rem 0.6rem;
-               max-height: 35vh;
-               background: rgba(255, 255, 255, 0.08);
-               backdrop-filter: blur(6px);
-               border: 1px solid rgba(255, 255, 255, 0.15);
        }
 
        .touch-tag-grid {
                flex-wrap: wrap;
        }
 
-       .touch-tag-item {
-               cursor: pointer;
-               display: flex;
-               align-items: center;
-               gap: 0.25rem;
-       }
-
        .touch-tag-item:active {
                transform: scale(0.96);
        }
git clone https://git.99rst.org/PROJECT