mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-15 04:29:37 +01:00
fix(Progress): handle horizontal animation in RTL mode (#2723)
This commit is contained in:
@@ -362,6 +362,24 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes carousel-rtl {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
width: 50%
|
||||
}
|
||||
|
||||
0% {
|
||||
transform: translateX(100%)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(-200%)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes carousel-vertical {
|
||||
|
||||
0%,
|
||||
@@ -394,6 +412,22 @@
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes carousel-inverse-rtl {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
width: 50%
|
||||
}
|
||||
|
||||
0% {
|
||||
transform: translateX(-200%)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(100%)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes carousel-inverse-vertical {
|
||||
|
||||
0%,
|
||||
|
||||
Reference in New Issue
Block a user