rename rank.pompy.dev -> list.pompy.dev

This commit is contained in:
Kim, Jimin 2025-03-20 09:44:00 +09:00
parent 767c892109
commit ca9817102f
Signed by: pomp
GPG key ID: D3932F82A0667A3B
17 changed files with 5 additions and 5 deletions

34
apps/list/app.vue Normal file
View file

@ -0,0 +1,34 @@
<template>
<ThemeController />
<main class="">
<div class="mx-auto max-w-screen-mobile">
<NuxtPage />
</div>
</main>
</template>
<style>
html,
body {
/* style */
@apply flex flex-col;
/* spacing */
@apply min-h-screen;
/* text */
@apply break-words font-noto-sans text-base font-normal leading-8 antialiased;
/* color */
@apply bg-light-ui-bg fill-light-text-default text-light-text-default dark:bg-dark-ui-bg dark:fill-dark-text-default dark:text-dark-text-default;
}
* {
@apply m-0;
}
</style>