@jjlmoya/utils-tabletop 1.15.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-tabletop",
3
- "version": "1.15.0",
3
+ "version": "1.17.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -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,13 @@
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%;
687
+ overflow: hidden;
678
688
  }
679
689
 
680
690
  .wheel-layout,
@@ -688,16 +698,34 @@
688
698
 
689
699
  .canvas-card,
690
700
  .tab-container {
691
- padding: 1rem;
701
+ width: 100%;
702
+ max-width: 100%;
703
+ padding: 0.75rem;
692
704
  border-radius: 1rem;
705
+ overflow: hidden;
706
+ }
707
+
708
+ .wheel-canvas-section {
709
+ align-items: stretch;
710
+ gap: 1rem;
711
+ }
712
+
713
+ .wheel-canvas-container {
714
+ width: 100%;
715
+ max-width: 100%;
693
716
  }
694
717
 
695
718
  .wheel-canvas {
696
- width: min(320px, calc(100vw - 6rem));
697
- height: min(320px, calc(100vw - 6rem));
719
+ width: min(220px, 100%);
720
+ height: auto;
721
+ aspect-ratio: 1;
722
+ margin: 0 auto;
698
723
  }
699
724
 
700
725
  .spin-button {
726
+ align-self: stretch;
727
+ width: 100%;
728
+ max-width: 100%;
701
729
  min-height: 3.5rem;
702
730
  height: auto;
703
731
  padding: 0.85rem;
@@ -705,6 +733,18 @@
705
733
  white-space: normal;
706
734
  }
707
735
 
736
+ .mute-btn {
737
+ top: 0.75rem;
738
+ right: 0.75rem;
739
+ width: 2.35rem;
740
+ height: 2.35rem;
741
+ }
742
+
743
+ .result-placeholder {
744
+ padding: 0.75rem 0.5rem;
745
+ font-size: 0.85rem;
746
+ }
747
+
708
748
  .tab-headers,
709
749
  .preset-group {
710
750
  flex-wrap: wrap;