|
@@ -30,11 +30,11 @@ const toLogin = () => {
|
|
|
<template>
|
|
|
<div
|
|
|
:class="prefixCls"
|
|
|
- class="h-[100%] relative <xl:bg-v-dark <sm:px-10px <xl:px-10px <md:px-10px"
|
|
|
+ class="h-[100%] relative lt-xl:v-dark lt-sm:px-10px lt-xl:px-10px lt-md:px-10px"
|
|
|
>
|
|
|
<div class="relative h-full flex mx-auto">
|
|
|
<div
|
|
|
- :class="`${prefixCls}__left flex-1 bg-gray-500 bg-opacity-20 relative p-30px <xl:hidden`"
|
|
|
+ :class="`${prefixCls}__left flex-1 bg-gray-500 bg-opacity-20 relative p-30px lt-xl:hidden`"
|
|
|
>
|
|
|
<div class="flex items-center relative text-white">
|
|
|
<img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
|
|
@@ -54,30 +54,32 @@ const toLogin = () => {
|
|
|
</TransitionGroup>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="flex-1 p-30px <sm:p-10px dark:bg-v-dark relative">
|
|
|
- <div class="flex justify-between items-center text-white @2xl:justify-end @xl:justify-end">
|
|
|
- <div class="flex items-center @2xl:hidden @xl:hidden">
|
|
|
+ <div class="flex-1 p-30px lt-sm:p-10px dark:v-dark relative">
|
|
|
+ <div
|
|
|
+ class="flex justify-between items-center text-white at-2xl:justify-end at-xl:justify-end"
|
|
|
+ >
|
|
|
+ <div class="flex items-center at-2xl:hidden at-xl:hidden">
|
|
|
<img src="@/assets/imgs/logo.png" alt="" class="w-48px h-48px mr-10px" />
|
|
|
<span class="text-20px font-bold">{{ underlineToHump(appStore.getTitle) }}</span>
|
|
|
</div>
|
|
|
|
|
|
<div class="flex justify-end items-center space-x-10px">
|
|
|
<ThemeSwitch />
|
|
|
- <LocaleDropdown class="<xl:text-white dark:text-white" />
|
|
|
+ <LocaleDropdown class="lt-xl:text-white dark:text-white" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<Transition appear enter-active-class="animate__animated animate__bounceInRight">
|
|
|
<div
|
|
|
- class="h-full flex items-center m-auto w-[100%] @2xl:max-w-500px @xl:max-w-500px @md:max-w-500px @lg:max-w-500px"
|
|
|
+ class="h-full flex items-center m-auto w-[100%] at-2xl:max-w-500px at-xl:max-w-500px at-md:max-w-500px at-lg:max-w-500px"
|
|
|
>
|
|
|
<LoginForm
|
|
|
v-if="isLogin"
|
|
|
- class="p-20px h-auto m-auto <xl:(rounded-3xl light:bg-white)"
|
|
|
+ class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
@to-register="toRegister"
|
|
|
/>
|
|
|
<RegisterForm
|
|
|
v-else
|
|
|
- class="p-20px h-auto m-auto <xl:(rounded-3xl light:bg-white)"
|
|
|
+ class="p-20px h-auto m-auto lt-xl:rounded-3xl lt-xl:light:bg-white"
|
|
|
@to-login="toLogin"
|
|
|
/>
|
|
|
</div>
|