web/Sidebar: add blank convert & shrink tabs
Some checks are pending
Run tests / web sanity check (push) Waiting to run
Run tests / check lockfile correctness (push) Waiting to run
Run tests / api sanity check (push) Waiting to run
Run tests / test service functionality (push) Waiting to run
Run tests / test service: ${{ matrix.service }} (push) Blocked by required conditions

This commit is contained in:
wukko 2024-08-14 01:43:04 +06:00
parent 8af6761951
commit 70a8c53cba
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2
5 changed files with 13 additions and 2 deletions

View file

@ -4,5 +4,7 @@
"updates": "updates",
"donate": "donate",
"about": "about",
"remux": "remux"
"remux": "remux",
"shrink": "shrink",
"convert": "convert"
}

View file

@ -11,7 +11,10 @@
import IconComet from "@tabler/icons-svelte/IconComet.svelte";
import IconHeart from "@tabler/icons-svelte/IconHeart.svelte";
import IconTransform from "@tabler/icons-svelte/IconTransform.svelte";
import IconInfoCircle from "@tabler/icons-svelte/IconInfoCircle.svelte";
import IconArrowsMinimize from "@tabler/icons-svelte/IconArrowsMinimize.svelte";
import { defaultSettingsPage } from "$lib/settings/defaults";
let screenWidth: number;
@ -29,6 +32,12 @@
<SidebarTab tabName="save" tabLink="/">
<IconDownload />
</SidebarTab>
<SidebarTab tabName="convert" tabLink="/convert">
<IconTransform />
</SidebarTab>
<SidebarTab tabName="shrink" tabLink="/shrink">
<IconArrowsMinimize />
</SidebarTab>
<SidebarTab tabName="remux" tabLink="/remux">
<IconRepeat />
</SidebarTab>

View file

@ -6,7 +6,7 @@
export let tabName: string;
export let tabLink: string;
const firstTabPage = ["save", "remux", "settings"];
const firstTabPage = ["save", "convert", "shrink", "remux"];
let tab: HTMLElement;

View file

View file