Skip to content

Commit 9336b5a

Browse files
committed
Fixed head style generation
1 parent ec86e8a commit 9336b5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

react-spaces/src/HeadStyles.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export const HeadStyles : React.FC<{ spaces: ISpace[] }> = (props) => {
3737
css.push(`width: ${style.width};`);
3838
}
3939
if (style.height) {
40-
css.push(`height: ${style.height}`);
40+
css.push(`height: ${style.height};`);
4141
}
4242
if (style.zIndex) {
43-
css.push(`z-index: ${style.zIndex}`);
43+
css.push(`z-index: ${style.zIndex};`);
4444
}
4545
if (css.length > 0) {
4646
styles.push(`#${space.id} { ${css.join(' ')} }`);

0 commit comments

Comments
 (0)