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,6 +1,6 @@
<template>
<div class="civpbkhh">
<div ref="scroll" class="scrollbox" v-bind:class="{ scroll: isScrolling }">
<div ref="scroll" class="scrollbox" :class="{ scroll: isScrolling }">
<div v-for="note in notes" class="note">
<div class="content _panel">
<div class="body">
@@ -12,7 +12,7 @@
<XMediaList :media-list="note.files"/>
</div>
<div v-if="note.poll">
<XPoll :note="note" :readOnly="true"/>
<XPoll :note="note" :read-only="true"/>
</div>
</div>
<XReactionsViewer ref="reactionsViewer" :note="note"/>
@@ -71,7 +71,9 @@ export default defineComponent({
transform: translate3d(0, calc(-100% + 90vh), 0);
}
}
</style>
<style lang="scss">
.civpbkhh {
text-align: right;