diff options
| author | taehoon <th.dev91@gmail.com> | 2019-03-28 14:11:52 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-03 11:40:06 -0400 |
| commit | 6b1e305a181386be11fde996abe66e3be5a35600 (patch) | |
| tree | 113ec15f1a8fcb9aed324971dd3cdac0a1c52fa9 /src/components/user_reporting_modal | |
| parent | 01cc7e448093cf8884610a96c7aeb89fb08c7307 (diff) | |
use custom scrollbar
Diffstat (limited to 'src/components/user_reporting_modal')
| -rw-r--r-- | src/components/user_reporting_modal/user_reporting_modal.vue | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/components/user_reporting_modal/user_reporting_modal.vue b/src/components/user_reporting_modal/user_reporting_modal.vue index becf882a..acd184cd 100644 --- a/src/components/user_reporting_modal/user_reporting_modal.vue +++ b/src/components/user_reporting_modal/user_reporting_modal.vue @@ -27,10 +27,12 @@ </div> </div> </div> - <div class="user-reporting-panel-right"> - <div v-for="status in statuses" :key="status.id" class="status-fadein user-reporting-panel-sitem"> - <Status :inConversation="false" :focused="false" :statusoid="status" /> - <Checkbox :checked="isChecked(status.id)" @change="checked => toggleStatus(checked, status.id)" /> + <div class="user-reporting-panel-right" v-bar> + <div> + <div v-for="status in statuses" :key="status.id" class="status-fadein user-reporting-panel-sitem"> + <Status :inConversation="false" :focused="false" :statusoid="status" /> + <Checkbox :checked="isChecked(status.id)" @change="checked => toggleStatus(checked, status.id)" /> + </div> </div> </div> </div> @@ -111,6 +113,7 @@ border-bottom-style: solid; border-color: $fallback--border; border-color: var(--border, $fallback--border); + padding-right: 15px; > .status-el { flex: 1; |
