apply pomp theme to apps/rank

This commit is contained in:
Kim, Jimin 2025-03-17 23:07:10 +09:00
parent 38edeb06a5
commit 928f5fcdfa
Signed by: pomp
GPG key ID: D3932F82A0667A3B
4 changed files with 63 additions and 2 deletions

View file

@ -17,3 +17,28 @@ const colorMode = useColorMode()
<NuxtPage class="mx-auto p-4" />
</div>
</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>