Skip to content

Commit

Permalink
Merge pull request #106 from AbdelrhmanAbdelhamed/master
Browse files Browse the repository at this point in the history
(DialogLayout): fix CloseBtn RTL positioning
  • Loading branch information
yariksav authored Sep 28, 2020
2 parents 6d2ec9f + f6f719a commit 4ae8644
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 4ae8644

Please sign in to comment.