휴가 수정

This commit is contained in:
dyhj625 2025-03-27 13:37:23 +09:00
parent 92b7d5d4ac
commit fdf439246e
3 changed files with 3 additions and 3 deletions

View File

@ -233,7 +233,7 @@
position: relative;
}
.vac-modal-body {
max-height: 230px;
max-height: 180px;
overflow-y: auto;
}
.vac-modal-text {

View File

@ -6,7 +6,7 @@
<button class="close-btn" @click="closeModal"></button>
</div>
<div class="vac-modal-body">
<p class="vac-modal-text">선물할 연차 개수를 선택세요.</p>
<p class="vac-modal-text">선물할 연차 개수를 선택세요.</p>
<div class="count-container">
<button @click="decreaseCount" :disabled="grantCount < 2" class="count-btn">-</button>
<span class="count-value">{{ grantCount }}</span>

View File

@ -24,7 +24,7 @@
<!-- 공지 접기 기능 -->
<div class="form-check mb-0">
<input class="form-check-input" type="checkbox" v-model="showNotices" id="hideNotices" />
<input class="form-check-input mt-1" type="checkbox" v-model="showNotices" id="hideNotices" />
<label class="form-check-label" for="hideNotices">공지 숨기기</label>
</div>