fix: lint

This commit is contained in:
xingyu4j
2025-10-28 14:29:42 +08:00
parent f88713ce28
commit 32d8af5475
6 changed files with 30 additions and 21 deletions

View File

@@ -284,6 +284,17 @@ onMounted(() => {
<style lang="scss" scoped>
// @jason看看能不能通过 tailwindcss 简化下
@keyframes bounce {
0%,
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0);
}
}
.process-definition-container {
.definition-item-card {
.flow-icon-img {
@@ -310,15 +321,4 @@ onMounted(() => {
}
}
}
@keyframes bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}
</style>