From 5ef58c90ae9b1c36f11eb2cc3650a599c7072af7 Mon Sep 17 00:00:00 2001 From: blueb Date: Thu, 3 Oct 2024 09:12:25 -0400 Subject: [PATCH] replace brs with margin in MkAbuseReport --- .../frontend/src/components/MkAbuseReport.vue | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/packages/frontend/src/components/MkAbuseReport.vue b/packages/frontend/src/components/MkAbuseReport.vue index f6488f9c84..608ed0e017 100644 --- a/packages/frontend/src/components/MkAbuseReport.vue +++ b/packages/frontend/src/components/MkAbuseReport.vue @@ -13,7 +13,6 @@ SPDX-License-Identifier: AGPL-3.0-only -
@@ -35,17 +34,15 @@ SPDX-License-Identifier: AGPL-3.0-only

-
+
{{ i18n.ts.moderator }}: @{{ report.assignee.username }} -
{{ i18n.ts.forwardReport }} -
{{ i18n.ts.abuseMarkAsResolved }}
@@ -124,12 +121,24 @@ function resolve() { > .keyvalCtn { display: inline-flex; gap: 15px; + margin-top: 15px; } } > .detail { - flex: 1; + display: flex; + flex-direction: column; padding: 0px 24px 24px 24px; + + .assignee { + margin-bottom: 15px; + } + + .action { + display: flex; + flex-direction: column; + gap: 15px; + } } }