Skip to content

Commit

Permalink
(DialogLayout): fix CloseBtn RTL positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelrhmanAbdelhamed committed Sep 27, 2020
1 parent 6d2ec9f commit f6f719a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/DialogLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f6f719a

Please sign in to comment.