m3-svelte 5.2.3 → 5.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
top: 50%;
|
|
260
260
|
inset-inline-start: calc(50% + (100% - 0.75rem) * var(--x));
|
|
261
261
|
translate: -50% -50%;
|
|
262
|
-
&:
|
|
262
|
+
&:dir(rtl) {
|
|
263
263
|
translate: 50% -50%;
|
|
264
264
|
}
|
|
265
265
|
background-color: rgb(var(--m3-scheme-secondary-container));
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
position: absolute;
|
|
287
287
|
inset-inline-start: var(--percent);
|
|
288
288
|
translate: -50% 0;
|
|
289
|
-
&:
|
|
289
|
+
&:dir(rtl) {
|
|
290
290
|
translate: 50% 0;
|
|
291
291
|
}
|
|
292
292
|
width: 0.25rem;
|
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
inset-inline-start: var(--percent);
|
|
314
314
|
bottom: calc(var(--handle-height) + 4px);
|
|
315
315
|
translate: -50% 0;
|
|
316
|
-
&:
|
|
316
|
+
&:dir(rtl) {
|
|
317
317
|
translate: 50% 0;
|
|
318
318
|
}
|
|
319
319
|
|
package/package/nav/Tabs.svelte
CHANGED