@jjlmoya/utils-tabletop 1.16.0 → 1.17.0
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.
package/package.json
CHANGED
|
@@ -17,6 +17,13 @@
|
|
|
17
17
|
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
.wheel-dashboard,
|
|
21
|
+
.wheel-dashboard *,
|
|
22
|
+
.wheel-dashboard *::before,
|
|
23
|
+
.wheel-dashboard *::after {
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
}
|
|
26
|
+
|
|
20
27
|
.wheel-layout {
|
|
21
28
|
display: grid;
|
|
22
29
|
grid-template-columns: 1.15fr 0.85fr;
|
|
@@ -671,10 +678,12 @@
|
|
|
671
678
|
}
|
|
672
679
|
|
|
673
680
|
.wheel-dashboard {
|
|
681
|
+
width: 100%;
|
|
674
682
|
padding: 1rem;
|
|
675
683
|
gap: 1.5rem;
|
|
676
684
|
border-radius: 1rem;
|
|
677
685
|
min-width: 0;
|
|
686
|
+
max-width: 100%;
|
|
678
687
|
overflow: hidden;
|
|
679
688
|
}
|
|
680
689
|
|
|
@@ -690,6 +699,7 @@
|
|
|
690
699
|
.canvas-card,
|
|
691
700
|
.tab-container {
|
|
692
701
|
width: 100%;
|
|
702
|
+
max-width: 100%;
|
|
693
703
|
padding: 0.75rem;
|
|
694
704
|
border-radius: 1rem;
|
|
695
705
|
overflow: hidden;
|
|
@@ -706,7 +716,7 @@
|
|
|
706
716
|
}
|
|
707
717
|
|
|
708
718
|
.wheel-canvas {
|
|
709
|
-
width: min(
|
|
719
|
+
width: min(220px, 100%);
|
|
710
720
|
height: auto;
|
|
711
721
|
aspect-ratio: 1;
|
|
712
722
|
margin: 0 auto;
|