@ioai/lerobot-studio 1.3.2 → 1.3.3

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.
@@ -1114,6 +1114,10 @@
1114
1114
  width: calc(var(--spacing) * 16);
1115
1115
  }
1116
1116
 
1117
+ .lerobot-root .w-20 {
1118
+ width: calc(var(--spacing) * 20);
1119
+ }
1120
+
1117
1121
  .lerobot-root .w-24 {
1118
1122
  width: calc(var(--spacing) * 24);
1119
1123
  }
@@ -1916,7 +1920,21 @@
1916
1920
  }
1917
1921
  }
1918
1922
 
1919
- .lerobot-root .bg-muted, .lerobot-root .bg-muted\/10 {
1923
+ .lerobot-root .bg-muted {
1924
+ background-color: var(--muted);
1925
+ }
1926
+
1927
+ .lerobot-root .bg-muted-foreground\/60 {
1928
+ background-color: var(--muted-foreground);
1929
+ }
1930
+
1931
+ @supports (color: color-mix(in lab, red, red)) {
1932
+ .lerobot-root .bg-muted-foreground\/60 {
1933
+ background-color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
1934
+ }
1935
+ }
1936
+
1937
+ .lerobot-root .bg-muted\/10 {
1920
1938
  background-color: var(--muted);
1921
1939
  }
1922
1940
 
@@ -3350,6 +3368,15 @@
3350
3368
  outline-width: 1px;
3351
3369
  }
3352
3370
 
3371
+ .lerobot-root .focus-visible\:outline-2:focus-visible {
3372
+ outline-style: var(--tw-outline-style);
3373
+ outline-width: 2px;
3374
+ }
3375
+
3376
+ .lerobot-root .focus-visible\:outline-primary:focus-visible {
3377
+ outline-color: var(--primary);
3378
+ }
3379
+
3353
3380
  .lerobot-root .focus-visible\:outline-ring:focus-visible {
3354
3381
  outline-color: var(--ring);
3355
3382
  }