diff --git a/src/components/common/ConnectButton.tsx b/src/components/common/ConnectButton.tsx
index c7127814..02593517 100644
--- a/src/components/common/ConnectButton.tsx
+++ b/src/components/common/ConnectButton.tsx
@@ -9,6 +9,7 @@ import { UniLink } from "../ui/UniLink"
import { useEffect, useState } from "react"
import { DuplicateIcon, LogoutIcon } from "@heroicons/react/outline"
import { BigNumber } from "ethers"
+import { SITE_URL } from "~/lib/env"
export const ConnectButton: React.FC<{
left?: boolean
@@ -40,7 +41,7 @@ export const ConnectButton: React.FC<{
{
icon: ,
label: "Writer dashboard",
- url: `/dashboard`,
+ url: `${SITE_URL}/dashboard`,
},
{
icon: ,
diff --git a/src/css/prose.css b/src/css/prose.css
index 75106a39..945fcef7 100644
--- a/src/css/prose.css
+++ b/src/css/prose.css
@@ -37,10 +37,10 @@
}
.prose blockquote {
- @apply border-l-4 border-theme-color;
+ @apply border-l-4 border-zinc-300;
@apply pl-5;
- @apply my-7;
- @apply text-zinc-900 font-medium;
+ @apply mb-5;
+ @apply text-zinc-500;
}
.prose ul {
diff --git a/src/css/tailwind.css b/src/css/tailwind.css
index 2a167615..0f230d39 100644
--- a/src/css/tailwind.css
+++ b/src/css/tailwind.css
@@ -269,3 +269,8 @@ textarea.input {
.text-theme-color-dark {
color: var(--theme-color-dark);
}
+
+::selection {
+ background-color: var(--theme-color);
+ color: #fff;
+}
diff --git a/src/pages/dashboard/[subdomain]/editor.tsx b/src/pages/dashboard/[subdomain]/editor.tsx
index 4168e5ce..2b37e724 100644
--- a/src/pages/dashboard/[subdomain]/editor.tsx
+++ b/src/pages/dashboard/[subdomain]/editor.tsx
@@ -149,7 +149,7 @@ export default function SubdomainEditor() {
})
view.dispatch(
view.state.replaceSelection(
- `\n\n\n\n`,
+ `\n\n`,
),
)
} catch (error) {
@@ -266,7 +266,7 @@ export default function SubdomainEditor() {
ref={editorRef}
>