mirror of
https://github.com/imputnet/cobalt.git
synced 2025-02-05 13:08:40 +00:00
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
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:
parent
8af6761951
commit
70a8c53cba
|
@ -4,5 +4,7 @@
|
|||
"updates": "updates",
|
||||
"donate": "donate",
|
||||
"about": "about",
|
||||
"remux": "remux"
|
||||
"remux": "remux",
|
||||
"shrink": "shrink",
|
||||
"convert": "convert"
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
0
web/src/routes/convert/+page.svelte
Normal file
0
web/src/routes/convert/+page.svelte
Normal file
0
web/src/routes/shrink/+page.svelte
Normal file
0
web/src/routes/shrink/+page.svelte
Normal file
Loading…
Reference in a new issue