Refactor CSS variables and update button variant in CatchPhrase and [slug] components

This commit is contained in:
2025-07-24 20:30:31 +02:00
parent 8048549674
commit cfaea67829
3 changed files with 24 additions and 7 deletions

View File

@@ -33,3 +33,15 @@ const { t } = useI18n({
}
}
</i18n>
<style scoped>
@keyframes wave {
0%,
100% {
transform: rotate(-3deg) scale(1);
}
50% {
transform: rotate(3deg) scale(1.1);
}
}
</style>