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 ec86e8a commit 9336b5aCopy full SHA for 9336b5a
react-spaces/src/HeadStyles.tsx
@@ -37,10 +37,10 @@ export const HeadStyles : React.FC<{ spaces: ISpace[] }> = (props) => {
37
css.push(`width: ${style.width};`);
38
}
39
if (style.height) {
40
- css.push(`height: ${style.height}`);
+ css.push(`height: ${style.height};`);
41
42
if (style.zIndex) {
43
- css.push(`z-index: ${style.zIndex}`);
+ css.push(`z-index: ${style.zIndex};`);
44
45
if (css.length > 0) {
46
styles.push(`#${space.id} { ${css.join(' ')} }`);
0 commit comments