14 lines
275 B
SCSS
14 lines
275 B
SCSS
// * RTL
|
|
// *******************************************************************************
|
|
|
|
@include rtl-only {
|
|
#sortable-cards {
|
|
flex-direction: row-reverse;
|
|
}
|
|
#image-list-1,
|
|
#image-list-2 {
|
|
flex-direction: row-reverse;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|