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 d282136 commit 894e29aCopy full SHA for 894e29a
src/helpers/columnWidth/columnWidth.js
@@ -11,10 +11,10 @@ export const percentage = (props, breakpoint) =>
11
12
export const display = (props, breakpoint) => {
13
if ((props.display && isString(props.display))) {
14
- return css`display: ${props.display}`;
+ return css`display: ${props.display};`;
15
}
16
17
- return !has(props.display, `${breakpoint}`) ? css`display: block` : null;
+ return !has(props.display, `${breakpoint}`) ? css`display: block;` : null;
18
};
19
20
export const isHidden = (props, breakpoint) =>
0 commit comments