style : UI 맞추기 및 요구사항 반영

This commit is contained in:
Yesol Choi
2025-06-02 08:30:53 +09:00
parent 7cbaee5385
commit a9f603c1e9
2 changed files with 13 additions and 9 deletions

View File

@@ -651,8 +651,8 @@ const moveDown = (index: number) => {
</VField>
</span>
<span v-else-if="column.key === 'actions'" class="flex gap-1">
<VCustomButton v-if="index != 1" @click="moveUp(index)" icon="lucide:chevron-up" />
<VCustomButton @click="moveDown(index)" icon="lucide:chevron-down" />
<VCustomButton v-if="index != 1" @click="moveUp(index)" icon="lucide:arrow-up" />
<VCustomButton @click="moveDown(index)" icon="lucide:arrow-down" />
<VCustomButton @click="onPriceDelete(index)">{{"삭제"}}</VCustomButton>
</span>
<span v-else>{{value}}</span>
@@ -745,4 +745,8 @@ const moveDown = (index: number) => {
background-color: var(--primary);
}
}
.iconify {
font-size: 16px; /* 크기 조절 */
}
</style>