From f6f719a0f91bdf8aa3f5bdc312383c7d976b921d Mon Sep 17 00:00:00 2001 From: Abdelrahman Abdelhamed Date: Sun, 27 Sep 2020 23:23:17 +0200 Subject: [PATCH] (DialogLayout): fix CloseBtn RTL positioning --- src/components/DialogLayout.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/DialogLayout.vue b/src/components/DialogLayout.vue index e0eecec..1708110 100644 --- a/src/components/DialogLayout.vue +++ b/src/components/DialogLayout.vue @@ -76,13 +76,18 @@ export default { width: 16px; height: 16px; font-family: -webkit-pictograph; - right: 14px; font-size: 30px; opacity: 0.5; z-index: 1000; cursor: pointer; line-height: 0.5; } + .v-application--is-ltr .vuedl-layout__closeBtn { + right: 14px; + } + .v-application--is-rtl .vuedl-layout__closeBtn { + left: 14px; + } .vuedl-layout__closeBtn:hover { opacity: 1; }