Skip to content

Commit bf4d39c

Browse files
committed
fix score label size
1 parent cdd4412 commit bf4d39c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/MLB.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async function createExpandedWidget() {
125125
inningStack.centerAlignContent();
126126

127127
if (isPlaying) {
128-
inningStack.addSpacer();
128+
inningStack.addSpacer(12);
129129
const arrowText = inningStack.addText(game.linescore.isTopInning ? '▲' : '▼');
130130
arrowText.font = Font.regularSystemFont(10);
131131
arrowText.textColor = Color.lightGray();
@@ -136,7 +136,6 @@ async function createExpandedWidget() {
136136

137137
const basesStack = statusStack.addStack();
138138
basesStack.layoutHorizontally();
139-
basesStack.addSpacer();
140139
const bases = getBasesImage(game);
141140
const basesWidgetImage = basesStack.addImage(bases);
142141
basesWidgetImage.rightAlignImage();

0 commit comments

Comments
 (0)