mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
fix(Table): handle loading animation in RTL mode (#2771)
This commit is contained in:
@@ -56,13 +56,13 @@ export default (options: Required<ModuleOptions>) => ({
|
||||
loading: true,
|
||||
loadingAnimation: 'carousel',
|
||||
class: {
|
||||
thead: 'after:animate-[carousel_2s_ease-in-out_infinite]'
|
||||
thead: 'after:animate-[carousel_2s_ease-in-out_infinite] rtl:after:animate-[carousel-rtl_2s_ease-in-out_infinite]'
|
||||
}
|
||||
}, {
|
||||
loading: true,
|
||||
loadingAnimation: 'carousel-inverse',
|
||||
class: {
|
||||
thead: 'after:animate-[carousel-inverse_2s_ease-in-out_infinite]'
|
||||
thead: 'after:animate-[carousel-inverse_2s_ease-in-out_infinite] rtl:after:animate-[carousel-inverse-rtl_2s_ease-in-out_infinite]'
|
||||
}
|
||||
}, {
|
||||
loading: true,
|
||||
|
||||
Reference in New Issue
Block a user