download selection wip

Co-authored-by: sn <baiorett@koisu.ru>
This commit is contained in:
afnzmn
2022-07-19 17:42:31 -04:00
parent d006c09266
commit dfc0dfefa5
7 changed files with 135 additions and 11 deletions

View File

@@ -69,6 +69,7 @@ import Wave from '$lib/components/atoms/Wave.svelte';
--grey-three: #3e404f;
--grey-four: #1B1E29;
--grey-five: #D0D0D0;
--grey-six: #a19e9e;
}
:global(::selection) {
@@ -97,13 +98,13 @@ import Wave from '$lib/components/atoms/Wave.svelte';
}
:global(::-webkit-scrollbar-thumb) {
background-color: var(--grey-two);
background-color: var(--grey-three);
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
:global(::-webkit-scrollbar-thumb:hover) {
background-color: var(--grey-three);
background-color: var(--grey-four);
}
</style>

View File

@@ -1,7 +1,9 @@
<script>
import DownloadSelectionHost from '$lib/components/molecules/DownloadSelectionHost.svelte';
import DownloadChannelHost from '$lib/components/molecules/DownloadChannelHost.svelte';
import DownloadSelectorHost from '$lib/components/molecules/DownloadSelectorHost.svelte';
</script>
<div class="wrapper">
<DownloadSelectionHost></DownloadSelectionHost>
<DownloadChannelHost></DownloadChannelHost>
<DownloadSelectorHost></DownloadSelectorHost>
</div>