fix. 머지 충돌 수정

Made-with: Cursor
This commit is contained in:
clkim
2026-02-27 15:46:27 +09:00
parent fd83d3ae94
commit 2779a663d7
17 changed files with 31 additions and 53 deletions

View File

@@ -13,11 +13,11 @@ const analytics = {
<template>
<AtomsButtonCircle
sr-only="home"
type="internal"
href="/home"
class="btn-home"
background-color="rgb(0 0 0 / 0.2)"
sr-only="home"
class="btn-home"
@click="sendLog(locale, analytics)"
>
<AtomsIconsHomeFill />

View File

@@ -32,9 +32,9 @@ const handleScrollToTop = () => {
<Transition name="fade">
<AtomsButtonCircle
v-show="showBtn"
class="btn-top"
sr-only="top"
:background-color="backgroundColor"
sr-only="top"
class="btn-top"
@click="handleScrollToTop"
>
<AtomsIconsArrowControlTopLine />

View File

@@ -30,17 +30,17 @@ const handleArrowClick = (direction: 'prev' | 'next') => {
<template>
<div class="splide__arrows">
<AtomsButtonCircle
:background-color="getArrowBackgroundColor('prev')"
sr-only="Previous"
class="splide-arrow splide__arrow--prev"
:background-color="getArrowBackgroundColor('prev')"
@click="handleArrowClick('prev')"
>
<AtomsIconsArrowRightLine color="#ffffff" />
</AtomsButtonCircle>
<AtomsButtonCircle
:background-color="getArrowBackgroundColor('next')"
sr-only="Next"
class="splide-arrow splide__arrow--next"
:background-color="getArrowBackgroundColor('next')"
@click="handleArrowClick('next')"
>
<AtomsIconsArrowRightLine color="#ffffff" />