diff --git a/src/partials/Anchor.svelte b/src/partials/Anchor.svelte index b3a4285d..3c21cf34 100644 --- a/src/partials/Anchor.svelte +++ b/src/partials/Anchor.svelte @@ -15,9 +15,9 @@ {"opacity-50": loading}, switcher(type, { anchor: "underline", - button: "py-2 px-4 rounded bg-white text-accent", - 'button-circle': "w-10 h-10 flex justify-center items-center rounded-full bg-white text-accent", - 'button-accent': "py-2 px-4 rounded bg-accent text-white", + button: "py-2 px-4 rounded bg-white text-accent whitespace-nowrap", + 'button-circle': "w-10 h-10 flex justify-center items-center rounded-full bg-white text-accent whitespace-nowrap", + 'button-accent': "py-2 px-4 rounded bg-accent text-white whitespace-nowrap", }), ) diff --git a/src/partials/Modal.svelte b/src/partials/Modal.svelte index 4eef4140..b4ee9f61 100644 --- a/src/partials/Modal.svelte +++ b/src/partials/Modal.svelte @@ -2,7 +2,6 @@ import {fly, fade} from "svelte/transition" export let onEscape = null - export let nested = false let root @@ -16,16 +15,13 @@