fix. 버튼 기본 사이즈 수정

This commit is contained in:
clkim
2025-10-17 10:35:27 +09:00
parent 05b47e7c37
commit 120580495f
4 changed files with 6 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ const emit = defineEmits<{
<style scoped>
.btn-play {
@apply relative w-[66px] h-[66px] bg-[image:var(--video-play)] bg-cover bg-center bg-no-repeat md:w-[100px] md:h-[100px]
@apply relative w-[60px] h-[60px] bg-[image:var(--video-play)] bg-cover bg-center bg-no-repeat md:w-[80px] md:h-[80px]
after:content-[''] after:absolute after:top-0 after:left-0 after:w-full after:h-full after:bg-white after:rounded-[50%] after:opacity-0 after:transition-opacity after:duration-300 after:ease-in-out
hover:after:opacity-10;
}

View File

@@ -14,7 +14,7 @@ interface props {
const props = withDefaults(defineProps<props>(), {
type: 'action',
buttonSize: 'size-extra-small md:size-large',
buttonSize: 'size-small md:size-large',
backgroundColor: 'var(--primary)',
textColor: 'var(--alternative-02)',
disabled: false,