휴가 아이콘 위치 수정

This commit is contained in:
dyhj625 2025-03-21 14:45:07 +09:00
parent e6a4399761
commit 5f43cc1d19

View File

@ -6,7 +6,7 @@
<button class="vac-btn vac-btn-warning rounded-circle d-flex align-items-center justify-content-center" <button class="vac-btn vac-btn-warning rounded-circle d-flex align-items-center justify-content-center"
:class="{ active: halfDayType === 'AM' }" :class="{ active: halfDayType === 'AM' }"
@click="toggleHalfDay('AM')"> @click="toggleHalfDay('AM')">
<i class="bi bi-sun"></i> <i class="bi bi-sun d-flex"></i>
</button> </button>
</div> </div>
</div> </div>
@ -16,7 +16,7 @@
<button class="vac-btn vac-btn-info rounded-circle d-flex align-items-center justify-content-center" <button class="vac-btn vac-btn-info rounded-circle d-flex align-items-center justify-content-center"
:class="{ active: halfDayType === 'PM' }" :class="{ active: halfDayType === 'PM' }"
@click="toggleHalfDay('PM')"> @click="toggleHalfDay('PM')">
<i class="bi bi-moon"></i> <i class="bi bi-moon d-flex"></i>
</button> </button>
</div> </div>
</div> </div>
@ -26,7 +26,7 @@
<button class="vac-btn vac-btn-primary rounded-circle d-flex align-items-center justify-content-center" <button class="vac-btn vac-btn-primary rounded-circle d-flex align-items-center justify-content-center"
:class="{ active: halfDayType === 'FULL' }" :class="{ active: halfDayType === 'FULL' }"
@click="toggleHalfDay('FULL')"> @click="toggleHalfDay('FULL')">
<i class="bi bi-calendar"></i> <i class="bi bi-calendar d-flex"></i>
</button> </button>
</div> </div>
</div> </div>