2019-08-24 23:42:41 +00:00
|
|
|
<template>
|
2021-07-27 12:47:41 +00:00
|
|
|
<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>
|
2019-08-24 23:42:41 +00:00
|
|
|
</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>
|