upd icons & tabs
This commit is contained in:
parent
4ec63d4bd8
commit
d65114a681
|
|
@ -1 +1 @@
|
|||
1.2.18
|
||||
1.2.20
|
||||
|
|
@ -64,10 +64,10 @@
|
|||
);
|
||||
</script>
|
||||
|
||||
<div class="mb-4 mt-2 flex items-end gap-0 overflow-x-auto border-b border-[#3a3a3a] scrollbar-hide">
|
||||
<div class="mb-4 mt-2 flex flex-wrap items-end gap-0 border-b border-[#3a3a3a]">
|
||||
{#each tabs as tab}
|
||||
<button
|
||||
class="flex-shrink-0 px-3.5 py-2 text-sm font-medium transition-colors border-b-2 -mb-px {activeView === tab.id
|
||||
class="px-3.5 py-2 text-sm font-medium transition-colors border-b-2 -mb-px {activeView === tab.id
|
||||
? 'border-accent text-white'
|
||||
: 'border-transparent text-[#888] hover:text-[#bbb] cursor-pointer'}"
|
||||
onclick={() => onviewchange(tab.id)}
|
||||
|
|
@ -76,12 +76,17 @@
|
|||
</button>
|
||||
{/each}
|
||||
|
||||
{#if isMeeting && activeView === "agenda" && ontogglecompact}
|
||||
{#if isMeeting && ontogglecompact}
|
||||
<button
|
||||
class="ml-auto flex-shrink-0 px-2.5 py-1.5 mb-0.5 text-xs text-[#777] hover:text-[#aaa] border border-[#444] rounded transition-colors"
|
||||
class="ml-auto px-2 py-1.5 mb-0.5 text-[#777] hover:text-[#aaa] transition-colors cursor-pointer"
|
||||
onclick={ontogglecompact}
|
||||
title={compact ? "Alle aufklappen" : "Alle einklappen"}
|
||||
>
|
||||
{compact ? "Aufklappen" : "Einklappen"}
|
||||
{#if compact}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 20 5-5 5 5"/><path d="m7 4 5 5 5-5"/></svg>
|
||||
{:else}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m7 15 5 5 5-5"/><path d="m7 9 5-5 5 5"/></svg>
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 18 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 776 KiB After Width: | Height: | Size: 62 KiB |
|
|
@ -17,7 +17,7 @@ export default defineConfig({
|
|||
theme_color: '#1a1a22',
|
||||
icons: [
|
||||
{ src: '/icon-192.png', sizes: '192x192', type: 'image/png', purpose: 'any' },
|
||||
{ src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' }
|
||||
{ src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'any' }
|
||||
]
|
||||
},
|
||||
workbox: {
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue