Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/components/toast/_toast.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@
opacity: 0;
}

// fix close icon in rtl direction
.toast-header {
.close {
[dir="rtl"] & {
margin-left: unset !important; // override bootstrap's ml-auto class
margin-right: auto;
}
}
}

.toast-body {
display: block; // Needed when we use a link as the body element
}
Expand Down