We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b9d6e commit 3635cb6Copy full SHA for 3635cb6
components/src/hardware-sim/Deck/SlotLabels.tsx
@@ -40,6 +40,9 @@ export const SlotLabels = ({
40
const simpleItemWidthStyle: Record<string, string> = {
41
'--dynamic-width': `${widthLargeRem}rem`,
42
}
43
+ const smallItemWidthStyle: Record<string, string> = {
44
+ '--dynamic-width': `${widthSmallRem}rem`,
45
+ }
46
const nextTo4thWidthStyle: Record<string, string> = {
47
'--dynamic-width': itemDynamicWidth,
48
@@ -88,7 +91,7 @@ export const SlotLabels = ({
88
91
</div>
89
92
<div
90
93
className={styles.deck_label_row_container}
- style={simpleItemWidthStyle}
94
+ style={smallItemWidthStyle}
95
>
96
<DeckInfoLabel deckLabel="2" height="100%" />
97
0 commit comments