2024-06-14 11:33:01 +01:00
|
|
|
<script>
|
|
|
|
import CobaltLogo from "./CobaltLogo.svelte";
|
|
|
|
import SidebarTab from "./SidebarTab.svelte";
|
|
|
|
|
|
|
|
import {
|
|
|
|
IconDownload,
|
|
|
|
IconCut,
|
|
|
|
IconCrop,
|
|
|
|
IconTransform,
|
|
|
|
IconSettings,
|
|
|
|
IconComet,
|
|
|
|
IconHeart,
|
|
|
|
IconInfoCircle,
|
|
|
|
} from "@tabler/icons-svelte";
|
|
|
|
|
|
|
|
const iconSize = 21;
|
|
|
|
const iconStroke = 1.2;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<nav id="sidebar">
|
|
|
|
<CobaltLogo />
|
|
|
|
<div id="sidebar-tabs">
|
|
|
|
<div id="sidebar-actions" class="sidebar-inner-container">
|
|
|
|
<SidebarTab tabName="save" tabLink="/">
|
|
|
|
<IconDownload size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="trim" tabLink="/trim">
|
|
|
|
<IconCut size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="crop" tabLink="/crop">
|
|
|
|
<IconCrop size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="convert" tabLink="/convert">
|
|
|
|
<IconTransform size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="settings" tabLink="/settings">
|
|
|
|
<IconSettings size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
</div>
|
|
|
|
<div id="sidebar-info" class="sidebar-inner-container">
|
|
|
|
<SidebarTab tabName="updates" tabLink="/updates">
|
|
|
|
<IconComet size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="donate" tabLink="/donate">
|
|
|
|
<IconHeart size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
<SidebarTab tabName="about" tabLink="/about">
|
|
|
|
<IconInfoCircle size={iconSize} stroke={iconStroke} />
|
|
|
|
</SidebarTab>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#sidebar,
|
|
|
|
#sidebar-tabs,
|
|
|
|
.sidebar-inner-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2024-06-14 11:38:10 +01:00
|
|
|
|
2024-06-14 11:33:01 +01:00
|
|
|
#sidebar {
|
|
|
|
background: black;
|
|
|
|
height: 100vh;
|
|
|
|
position: sticky;
|
|
|
|
width: var(--sidebar-width);
|
|
|
|
}
|
2024-06-14 11:38:10 +01:00
|
|
|
|
2024-06-14 11:33:01 +01:00
|
|
|
#sidebar-tabs {
|
|
|
|
height: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-bottom: var(--sidebar-padding);
|
2024-06-14 11:47:13 +01:00
|
|
|
overflow: scroll;
|
2024-06-14 11:33:01 +01:00
|
|
|
}
|
2024-06-14 12:33:33 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 535px) {
|
|
|
|
#sidebar,
|
|
|
|
#sidebar-tabs,
|
|
|
|
.sidebar-inner-container {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
#sidebar {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
overflow: scroll;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
#sidebar::before {
|
|
|
|
content: '';
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
rgba(0, 0, 0, 0.9) 0%,
|
|
|
|
rgba(0, 0, 0, 0) 4%,
|
|
|
|
rgba(0, 0, 0, 0) 50%,
|
|
|
|
rgba(0, 0, 0, 0) 96%,
|
|
|
|
rgba(0, 0, 0, 0.9) 100%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#sidebar-tabs {
|
|
|
|
justify-content: space-around;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2024-06-14 11:33:01 +01:00
|
|
|
</style>
|