api-client/components/app/Logo.vue

22 lines
398 B
Vue
Raw Normal View History

<template>
<svg class="logo" xmlns="http://www.w3.org/2000/svg" width="32" height="32">
<circle class="fill-current" r="8" cx="50%" cy="50%" />
<circle class="fill-primary" r="6" cx="50%" cy="50%" />
2019-09-26 09:55:37 +00:00
</svg>
</template>
2021-07-03 13:14:58 +00:00
<style scoped lang="scss">
.logo {
animation: 200ms appear;
2020-02-24 18:44:50 +00:00
}
2021-07-03 13:14:58 +00:00
@keyframes appear {
0% {
@apply opacity-0;
}
100% {
@apply opacity-100;
}
}
</style>