로그인 페이지 레이아웃 구현

This commit is contained in:
static
2024-12-26 01:20:01 +09:00
parent 8771b324a1
commit 07252126ec
4 changed files with 42 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
);
</script>
<button {onclick} class="{bgColorStyle} {fontColorStyle} h-12 rounded-xl font-medium">
<button {onclick} class="{bgColorStyle} {fontColorStyle} h-12 h-full w-full rounded-xl font-medium">
<div class="h-full w-full p-3 transition active:scale-95">
{@render children?.()}
</div>

View File

@@ -30,6 +30,6 @@
}
input:focus + label,
input:not(:placeholder-shown) + label {
@apply text-primary-400 top-0 -translate-y-full text-sm;
@apply top-0 -translate-y-full text-sm text-primary-400;
}
</style>