mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
fix: 💄 Add slight margin to Lysand logo on login page
This commit is contained in:
parent
d8c7558bcb
commit
8b22a22ae4
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="flex min-h-screen relative flex-col justify-center py-12 px-8">
|
<div class="flex min-h-screen relative flex-col justify-center py-12 px-8">
|
||||||
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo-long-dark.webp" alt="Lysand logo"
|
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo-long-dark.webp" alt="Lysand logo"
|
||||||
class="mx-auto h-24 hidden md:block" />
|
class="mx-auto h-24 hidden md:block mb-10" />
|
||||||
<div v-if="validUrlParameters"
|
<div v-if="validUrlParameters"
|
||||||
class="sm:mx-auto w-full sm:max-w-md px-10 py-10 rounded md:ring-1 md:ring-white/10">
|
class="sm:mx-auto w-full sm:max-w-md px-10 py-10 rounded md:ring-1 md:ring-white/10">
|
||||||
<div v-if="error" class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10">
|
<div v-if="error" class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10">
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="flex min-h-screen flex-col justify-center px-6 py-12 gap-10 lg:px-8 relative">
|
<div class="flex min-h-screen flex-col justify-center px-6 py-12 gap-10 lg:px-8 relative">
|
||||||
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo-long-dark.webp"
|
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo-long-dark.webp" alt="Lysand logo"
|
||||||
alt="Lysand logo" class="mx-auto h-24 hidden md:block" />
|
class="mx-auto h-24 hidden md:block" />
|
||||||
<div v-if="instance && instance.registrations" class="mx-auto w-full max-w-md">
|
<div v-if="instance && instance.registrations" class="mx-auto w-full max-w-md">
|
||||||
<div v-if="Object.keys(errors).length > 0"
|
<div v-if="Object.keys(errors).length > 0"
|
||||||
class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10">
|
class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10">
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
</VeeField>
|
</VeeField>
|
||||||
|
|
||||||
<ButtonsPrimary type="submit" class="w-full" :disabled="isLoading">{{ isLoading ? "Registering..." :
|
<ButtonsPrimary type="submit" class="w-full" :disabled="isLoading">{{ isLoading ? "Registering..." :
|
||||||
"Register" }}</ButtonsPrimary>
|
"Register" }}</ButtonsPrimary>
|
||||||
</VeeForm>
|
</VeeForm>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue