diff --git a/src/lib/components/atoms/DownloadChannel.svelte b/src/lib/components/atoms/DownloadChannel.svelte
index 3bbc287..5b7c210 100644
--- a/src/lib/components/atoms/DownloadChannel.svelte
+++ b/src/lib/components/atoms/DownloadChannel.svelte
@@ -22,17 +22,18 @@
button {
font-weight: 300;
+ font-size: 1.5rem;
height: 60px;
- width: 43vw;
+ width: 100%;
color: var(--white);
border-radius: 200px;
border: 0;
padding: 12px 40px;
cursor: pointer;
background-color: transparent;
- font-size: 1.5rem;
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
transition-duration: 0.4s;
+ transition-property: background-color;
user-select: none;
}
diff --git a/src/lib/components/molecules/DownloadChannelHost.svelte b/src/lib/components/molecules/DownloadChannelHost.svelte
index 4c05efe..b9e7385 100644
--- a/src/lib/components/molecules/DownloadChannelHost.svelte
+++ b/src/lib/components/molecules/DownloadChannelHost.svelte
@@ -27,7 +27,8 @@
background-color: var(--grey-one);
border-radius: 200px;
display: flex;
- justify-content: space-between;
padding: 8px 8px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
}
diff --git a/src/lib/components/molecules/DownloadSelectorHost.svelte b/src/lib/components/molecules/DownloadSelectorHost.svelte
index 301f087..ccda1af 100644
--- a/src/lib/components/molecules/DownloadSelectorHost.svelte
+++ b/src/lib/components/molecules/DownloadSelectorHost.svelte
@@ -7,6 +7,8 @@
+
+
diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte
index 0b69d40..4a4bf82 100644
--- a/src/routes/__layout.svelte
+++ b/src/routes/__layout.svelte
@@ -30,7 +30,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
-