Files
hoppscotch/packages/hoppscotch-sh-admin/src/pages/index.vue
Joel Jacob Stephen 50f475334e fix: enlarged hoppscotch logo on dashboard login screen (#3559)
fix: resize the dashboard login icon
2023-11-16 22:51:08 +05:30

23 lines
596 B
Vue

<template>
<main
class="flex h-screen flex-col justify-center items-center flex-1 flex-shrink-0"
>
<div class="flex flex-col justify-center text-center px-4">
<div class="flex justify-center items-center py-6">
<img src="/logo.svg" alt="hoppscotch-logo" class="w-20" />
</div>
<div class="flex flex-col items-center">
<h1 class="text-2xl text-secondaryDark">Login to Admin Dashboard</h1>
</div>
<div class="flex my-6">
<AppLogin />
</div>
</div>
</main>
</template>
<route lang="yaml">
meta:
layout: empty
</route>