fix: don't break the layout
I was so focused on the welcome screen that I accidentally broke the profile. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
parent
0d1b0454ef
commit
a8097d3363
2 changed files with 20 additions and 18 deletions
|
@ -24,6 +24,6 @@ You should have received a copy of the GNU Affero General Public License along w
|
|||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover" data-theme="skeleton">
|
||||
<div style="display: contents" class="h-full overflow-hidden">%sveltekit.body%</div>
|
||||
<div class="flex flex-col h-full">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -17,6 +17,7 @@ You should have received a copy of the GNU Affero General Public License along w
|
|||
import AnvilLogo from '../atoms/AnvilLogo.svelte';
|
||||
</script>
|
||||
|
||||
<main class="flex h-full">
|
||||
<div
|
||||
class="max-w-[400px] mx-auto flex flex-col self-center justify-start items-center content-stretch bg-surface-50 border border-rounded border-surface-200 drop-shadow p-8"
|
||||
>
|
||||
|
@ -37,3 +38,4 @@ You should have received a copy of the GNU Affero General Public License along w
|
|||
<a href="/" class="btn bg-initial text-surface-500">Reset passphrase</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
|
Loading…
Reference in a new issue