fix: Fix direction of media gallery arrows (#35014)

This commit is contained in:
diondiondion 2025-06-11 17:17:14 +02:00 committed by GitHub
commit 9896bed85f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 4 deletions

View file

@ -35,3 +35,12 @@
--input-background-color: var(--surface-variant-background-color);
--on-input-color: #{$secondary-text-color};
}
body {
// Variable for easily inverting directional UI elements,
--text-x-direction: 1;
&.rtl {
--text-x-direction: -1;
}
}