Skip to content

Commit 3635cb6

Browse files
fix(app): align column numbers in deck config (#19177)
1 parent 95b9d6e commit 3635cb6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/src/hardware-sim/Deck/SlotLabels.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ export const SlotLabels = ({
4040
const simpleItemWidthStyle: Record<string, string> = {
4141
'--dynamic-width': `${widthLargeRem}rem`,
4242
}
43+
const smallItemWidthStyle: Record<string, string> = {
44+
'--dynamic-width': `${widthSmallRem}rem`,
45+
}
4346
const nextTo4thWidthStyle: Record<string, string> = {
4447
'--dynamic-width': itemDynamicWidth,
4548
}
@@ -88,7 +91,7 @@ export const SlotLabels = ({
8891
</div>
8992
<div
9093
className={styles.deck_label_row_container}
91-
style={simpleItemWidthStyle}
94+
style={smallItemWidthStyle}
9295
>
9396
<DeckInfoLabel deckLabel="2" height="100%" />
9497
</div>

0 commit comments

Comments
 (0)