mirror of
https://github.com/directus/directus.git
synced 2026-01-11 01:28:03 -05:00
fix: adjust transform for rtl on empty state (#25636)
This commit is contained in:
5
.changeset/forty-turtles-peel.md
Normal file
5
.changeset/forty-turtles-peel.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@directus/app': patch
|
||||
---
|
||||
|
||||
Fixed an issue for empty states not being centered in RTL languages
|
||||
@@ -87,5 +87,9 @@ withDefaults(defineProps<Props>(), {
|
||||
inset-block-start: 50%;
|
||||
inset-inline-start: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
html[dir='rtl'] & {
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user