perf?(client): remove needless scoped annotation for style

This commit is contained in:
syuilo 2022-12-27 18:01:06 +09:00
parent 10a659eb99
commit ada04c1932
263 changed files with 407 additions and 343 deletions

View file

@ -1,10 +1,21 @@
<template>
<span class="mk-ellipsis">
<span>.</span><span>.</span><span>.</span>
</span>
<span class="mk-ellipsis">
<span>.</span><span>.</span><span>.</span>
</span>
</template>
<style lang="scss" scoped>
@keyframes ellipsis {
0%, 80%, 100% {
opacity: 1;
}
40% {
opacity: 0;
}
}
</style>
<style lang="scss">
.mk-ellipsis {
> span {
animation: ellipsis 1.4s infinite ease-in-out both;
@ -22,13 +33,4 @@
}
}
}
@keyframes ellipsis {
0%, 80%, 100% {
opacity: 1;
}
40% {
opacity: 0;
}
}
</style>