fix. [SWV-865] 영상재생 버튼 개선

Made-with: Cursor
This commit is contained in:
clkim
2026-02-27 15:14:16 +09:00
parent a21c4127f6
commit 9208aae87f
13 changed files with 81 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ const analytics = {
type="link"
to="/home"
class="btn-home"
bg-color="rgb(0 0 0 / 0.2)"
background-color="rgb(0 0 0 / 0.2)"
@click="sendLog(locale, analytics)"
>
<AtomsIconsHomeFill />

View File

@@ -34,7 +34,7 @@ const handleScrollToTop = () => {
v-show="showBtn"
class="btn-top"
sr-only="top"
:bg-color="backgroundColor"
:background-color="backgroundColor"
@click="handleScrollToTop"
>
<AtomsIconsArrowControlTopLine />

View File

@@ -32,7 +32,7 @@ const handleArrowClick = (direction: 'prev' | 'next') => {
<AtomsButtonCircle
sr-only="Previous"
class="splide-arrow splide__arrow--prev"
:bg-color="getArrowBgColor('prev')"
:background-color="getArrowBgColor('prev')"
@click="handleArrowClick('prev')"
>
<AtomsIconsArrowRightLine color="#ffffff" />
@@ -40,7 +40,7 @@ const handleArrowClick = (direction: 'prev' | 'next') => {
<AtomsButtonCircle
sr-only="Next"
class="splide-arrow splide__arrow--next"
:bg-color="getArrowBgColor('next')"
:background-color="getArrowBgColor('next')"
@click="handleArrowClick('next')"
>
<AtomsIconsArrowRightLine color="#ffffff" />