Skip to content

Commit

Permalink
mixin test
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Mar 20, 2023
1 parent 01c7723 commit a886a95
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions core/src/themes/ionic.mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -326,16 +326,31 @@
right: $end;
}
} @else {
@include ltr() {
left: $start;
right: $end;
@at-root {
@supports (inset-inline-start: 0) {
& {
inset-inline-start: $start;
inset-inline-end: $end;
}
}
}
@include rtl() {
left: unset;
right: unset;

left: $end;
right: $start;
@at-root {
@supports not (inset-inline-start: 0) {
& {
@include ltr() {
left: $start;
right: $end;
}
@include rtl() {
left: unset;
right: unset;

left: $end;
right: $start;
}
}
}
}
}
}
Expand Down

0 comments on commit a886a95

Please sign in to comment.