Skip to content

Commit 6a700f8

Browse files
committed
Fix css calc space
1 parent 54941b7 commit 6a700f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/controls/css/widgets-base.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -684,10 +684,10 @@
684684
line-height: var(--jp-widgets-inline-height);
685685
/* line-height doesn't work on some browsers for select options */
686686
padding-top: calc(
687-
var(--jp-widgets-inline-height)-var(--jp-widgets-font-size) / 2
687+
var(--jp-widgets-inline-height) - var(--jp-widgets-font-size) / 2
688688
);
689689
padding-bottom: calc(
690-
var(--jp-widgets-inline-height)-var(--jp-widgets-font-size) / 2
690+
var(--jp-widgets-inline-height) - var(--jp-widgets-font-size) / 2
691691
);
692692
}
693693

0 commit comments

Comments
 (0)