feat(theme-4): fix dark backgrounds, quick bet, inbox spacing, customer service theme
This commit is contained in:
10
apps/player/src/views/ForgotPasswordWrapperView.vue
Normal file
10
apps/player/src/views/ForgotPasswordWrapperView.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import { useViewport } from '../composables/useViewport';
|
||||
import ForgotPasswordView from './ForgotPasswordView.vue';
|
||||
import DesktopForgotPasswordView from './desktop/DesktopForgotPasswordView.vue';
|
||||
const { isDesktop } = useViewport();
|
||||
</script>
|
||||
<template>
|
||||
<DesktopForgotPasswordView v-if="isDesktop" />
|
||||
<ForgotPasswordView v-else />
|
||||
</template>
|
||||
Reference in New Issue
Block a user