Added icon change
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 39s

This commit is contained in:
2026-04-26 21:12:08 +02:00
parent 9048bb0f11
commit 475887420c
20 changed files with 668 additions and 41 deletions

View File

@@ -0,0 +1,33 @@
<script setup>
defineProps({
size: {
type: Number,
default: 10
}
})
</script>
<template>
<div class="spinner">
<span
class="spinner-inner"
:style="{ width: size + 'px', height: size + 'px' }"
></span>
</div>
</template>
<style lang="scss" scoped>
.spinner-inner {
border: 2px solid white;
border-top: 2px solid transparent;
border-radius: 50%;
display: inline-block;
animation: spin 0.7s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>