summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkAbuseReportWindow.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-05-14 10:21:56 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-05-14 10:21:56 +0900
commit8c97c54cfacd201e480dffb73db3fd0124532edb (patch)
tree676460f2318867865237f3ce11defd23afe72228 /packages/frontend/src/components/MkAbuseReportWindow.vue
parent:art: (diff)
downloadsharkey-8c97c54cfacd201e480dffb73db3fd0124532edb.tar.gz
sharkey-8c97c54cfacd201e480dffb73db3fd0124532edb.tar.bz2
sharkey-8c97c54cfacd201e480dffb73db3fd0124532edb.zip
refactor(frontend): use css modules
Diffstat (limited to 'packages/frontend/src/components/MkAbuseReportWindow.vue')
-rw-r--r--packages/frontend/src/components/MkAbuseReportWindow.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkAbuseReportWindow.vue b/packages/frontend/src/components/MkAbuseReportWindow.vue
index 9f2bf99338..7a1b7d532e 100644
--- a/packages/frontend/src/components/MkAbuseReportWindow.vue
+++ b/packages/frontend/src/components/MkAbuseReportWindow.vue
@@ -9,7 +9,7 @@
</I18n>
</template>
<MkSpacer :margin-min="20" :margin-max="28">
- <div class="dpvffvvy _gaps_m">
+ <div class="_gaps_m" :class="$style.root">
<div class="">
<MkTextarea v-model="comment">
<template #label>{{ i18n.ts.details }}</template>
@@ -60,8 +60,8 @@ function send() {
}
</script>
-<style lang="scss" scoped>
-.dpvffvvy {
+<style lang="scss" module>
+.root {
--root-margin: 16px;
}
</style>