style: integrate upstream font-size and layout improvements

Folds in changes from commits 6d97992, cc53c69, 6987c0c:
- Update stat label/value font sizes (clamp 0.9-1vw → 0.5-0.7vw)
- Update inventory items font size (clamp 0.4-0.6vw → 0.7-0.6vw)
- Center dice save button with auto margins
- Add debug console.log for committedTrackerData
- Comment out verbose console logs for plot progression and persona avatar
- Clarify prompt instruction to remove brackets
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-17 14:35:55 +11:00
parent 0764bc63a1
commit 658b911d12
4 changed files with 13 additions and 10 deletions
+5 -3
View File
@@ -639,7 +639,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
}
.rpg-inventory-items {
font-size: clamp(0.4vw, 0.5vw, 0.6vw);
font-size: clamp(0.7vw, 0.5vw, 0.6vw);
color: var(--rpg-text);
line-height: 1.3;
overflow-y: auto;
@@ -746,7 +746,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
.rpg-stat-label {
min-width: 4.062rem;
font-size: clamp(0.9vw, 0.95vw, 1vw);
font-size: clamp(0.5vw, 0.6vw, 0.7vw);
font-weight: 600;
text-align: left;
color: var(--rpg-text);
@@ -776,7 +776,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
.rpg-stat-value {
color: #fff;
font-size: clamp(0.9vw, 0.95vw, 1vw);
font-size: clamp(0.5vw, 0.6vw, 0.7vw);
font-weight: bold;
min-width: 1.875rem;
text-align: right;
@@ -2545,6 +2545,8 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
.rpg-dice-save-btn {
max-width: 200px;
margin-left: auto;
margin-right: auto;
}
}