fix. 액션버튼 a타입인 경우 높이 안먹는 이슈 대응

This commit is contained in:
clkim
2026-02-27 16:21:15 +09:00
parent 2779a663d7
commit 96db0009df

View File

@@ -71,7 +71,7 @@ const buttonStyle = computed(() => {
<style scoped>
.btn-base {
@apply overflow-hidden relative h-[48px] md:h-[64px] rounded-[8px] md:rounded-[10px] cursor-pointer
@apply overflow-hidden relative inline-flex items-center justify-center h-[48px] md:h-[64px] rounded-[8px] md:rounded-[10px] cursor-pointer
after:content-[''] after:absolute after:top-0 after:left-0 after:w-full after:h-full after:bg-white after:transition-opacity after:duration-300 after:ease-in-out after:opacity-0
hover:after:opacity-20;
}