diff --git a/src/lib/components/atoms/Button.svelte b/src/lib/components/atoms/Button.svelte
index 67dc98e..acb71b2 100644
--- a/src/lib/components/atoms/Button.svelte
+++ b/src/lib/components/atoms/Button.svelte
@@ -2,10 +2,12 @@
export let kind = 'secondary';
$: type = 'button-' + kind;
export let href = '#';
+ export let fontsize = '1.2rem';
+
-
+
@@ -25,10 +27,8 @@
padding: 12px 40px;
cursor: pointer;
background-color: transparent;
- font-size: 1.5rem;
margin-top: 45px;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
- margin-right: 20px;
user-select: none;
}
diff --git a/src/lib/components/atoms/DownloadChannel.svelte b/src/lib/components/atoms/DownloadChannel.svelte
index b5c733f..000c97e 100644
--- a/src/lib/components/atoms/DownloadChannel.svelte
+++ b/src/lib/components/atoms/DownloadChannel.svelte
@@ -22,8 +22,8 @@
button {
font-weight: 300;
- font-size: 1.5rem;
- height: 60px;
+ font-size: 1.4rem;
+ height: 55px;
width: 100%;
color: var(--white);
border-radius: 200px;
diff --git a/src/lib/components/atoms/DownloadSelector.svelte b/src/lib/components/atoms/DownloadSelector.svelte
index 47d7920..6e7f30e 100644
--- a/src/lib/components/atoms/DownloadSelector.svelte
+++ b/src/lib/components/atoms/DownloadSelector.svelte
@@ -3,26 +3,17 @@
-
99.9.9a
-
2022-07-11
+
2.5.0
+
2022-07-11
-
-
Features
-
+
Features
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
- sn is so oococolol
+ feature request issue template (1b39278)
+ issue templates [skip ci] (112bc99)
+
+
Bug Fixes
+
+ missing additional items [skip ci] (0ebab8b)
@@ -26,6 +26,8 @@
}
.hero-buttons {
+ display: flex;
+ gap:1rem;
user-select: none;
}
diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte
index acf4f31..3e42370 100644
--- a/src/routes/__layout.svelte
+++ b/src/routes/__layout.svelte
@@ -68,6 +68,7 @@ import Wave from '$lib/components/atoms/Wave.svelte';
--grey-four: #1B1E29;
--grey-five: #D0D0D0;
--grey-six: #a19e9e;
+ --grey-seven: #535563;
}
:global(::selection) {
@@ -88,6 +89,24 @@ import Wave from '$lib/components/atoms/Wave.svelte';
font-size: 1.85rem;
}
+ :global(h3) {
+ color: var(--white);
+ font-weight: 600;
+ font-size: 1rem;
+ }
+
+ :global(h4) {
+ color:var(--grey-six);
+ font-weight:500;
+ font-size: 1rem;
+ }
+
+ :global(h5) {
+ color:var(--white);
+ font-weight: 300;
+ font-size: 1rem;
+ }
+
/*-----scrollbar-----*/
:global(::-webkit-scrollbar) {
@@ -103,6 +122,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
}
:global(::-webkit-scrollbar-thumb:hover) {
- background-color: var(--grey-four);
+ background-color: var(--grey-seven);
}