Skip to content

Commit

Permalink
fix(modal): rtl modal header (#632)
Browse files Browse the repository at this point in the history
Fixes position of header elements in rtl mode.
Closes: #419.
  • Loading branch information
yggg authored and nnixaa committed Aug 13, 2018
1 parent 3b8bead commit 0370abe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/framework/theme/styles/global/bootstrap/_modals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,15 @@

@include nb-headings();

@include nb-rtl(flex-flow, row-reverse);

.close {
text-shadow: none;
color: nb-theme(modal-fg-heading);

@include nb-rtl {
margin-left: -1rem;
margin-right: auto;
};

&:hover {
color: nb-theme(modal-fg-heading);
}
Expand Down

0 comments on commit 0370abe

Please sign in to comment.