|
@@ -79,55 +79,3 @@ onMounted(() => { |
|
|
|
|
|
|
|
|
}) |
|
|
}) |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style> |
|
|
|
|
|
.title b { |
|
|
|
|
|
@apply text-green-400 capitalize; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon { |
|
|
|
|
|
@apply w-4 h-4 mx-2; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-container { |
|
|
|
|
|
color: #8094ae; |
|
|
|
|
|
@apply flex items-center |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-container .icon { |
|
|
|
|
|
color: rgb(109, 109, 109); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-size p { |
|
|
|
|
|
color: rgb(54, 150, 75); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-seed p { |
|
|
|
|
|
color: rgb(12, 108, 233); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.loader>div { |
|
|
|
|
|
animation: loader 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@keyframes loader { |
|
|
|
|
|
|
|
|
|
|
|
0%, |
|
|
|
|
|
100% { |
|
|
|
|
|
animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
0% { |
|
|
|
|
|
transform: rotateY(0deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
50% { |
|
|
|
|
|
transform: rotateY(1800deg); |
|
|
|
|
|
animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
100% { |
|
|
|
|
|
transform: rotateY(3600deg); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
</style> |
|
|
|