From 3775801cbb70ce8cd1ec7dfcb06b9b2d0fb5446b Mon Sep 17 00:00:00 2001 From: Kloon ImKloon Date: Sun, 1 Oct 2023 14:55:16 +0200 Subject: [PATCH] Add margin for report button --- frontend/src/components/CustomToast.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/components/CustomToast.vue b/frontend/src/components/CustomToast.vue index 9ba426e6..ef61dee0 100644 --- a/frontend/src/components/CustomToast.vue +++ b/frontend/src/components/CustomToast.vue @@ -33,9 +33,15 @@ export default { text-align: center; height: 40px; padding: 0 10px; + margin-left: 20px; border-radius: 5px; color: white; cursor: pointer; border: thin solid currentColor; } + +html[dir="rtl"] .action { + margin-left: initial; + margin-right: 20px; +}