diff options
author | Wolfgang Müller | 2025-02-26 15:55:25 +0100 |
---|---|---|
committer | Wolfgang Müller | 2025-02-26 17:38:53 +0100 |
commit | ccb5caa6d48f72849d4595f6067e15f8d77982aa (patch) | |
tree | 327aa20be814b5598682cbb850644fad0de1c3c7 /frontend/src/lib/tabs/ComicDelete.svelte | |
parent | ddce1596af778ea42eda57b5b4ef66ca64ba877c (diff) | |
download | hircine-ccb5caa6d48f72849d4595f6067e15f8d77982aa.tar.gz |
frontend: Streamline display of content in Delete tabs
Diffstat (limited to '')
-rw-r--r-- | frontend/src/lib/tabs/ComicDelete.svelte | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/frontend/src/lib/tabs/ComicDelete.svelte b/frontend/src/lib/tabs/ComicDelete.svelte index 3ae924c..93fa106 100644 --- a/frontend/src/lib/tabs/ComicDelete.svelte +++ b/frontend/src/lib/tabs/ComicDelete.svelte @@ -21,13 +21,12 @@ </script> <div class="flex flex-col gap-2"> - <div> - <p> - Deleting this comic will make all of its pages available again for allocation. All of its - metadata will be lost. - </p> - <p class="mt-2 font-medium">This action is irrevocable.</p> - </div> + <p> + Deleting this comic will make all of its pages available again for allocation. All of its + metadata will be lost. + <span class="font-medium">This action is irrevocable.</span> + </p> + <div class="flex"> <DeleteButton prominent {onclick} /> </div> |