We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90766a commit 015458aCopy full SHA for 015458a
lib/Cell.js
@@ -1,7 +1,7 @@
1
import styled from "styled-components";
2
import PropTypes from "prop-types";
3
4
-const Cell = styled.section`
+const Cell = styled.div`
5
height: 100%;
6
min-width: 0;
7
grid-column-end: ${({ width = 1 }) => `span ${width}`};
lib/__tests__/__snapshots__/Cell.test.js.snap
@@ -23,7 +23,7 @@ exports[`<Cell/> 'middle' prop vertically aligns contents 1`] = `
23
justify-self: stretch;
24
}
25
26
-<section
+<div
27
className="c0"
28
/>
29
`;
@@ -36,7 +36,7 @@ exports[`<Cell/> matches snapshot with default args 1`] = `
36
grid-row-end: span 1;
37
38
39
40
41
42
0 commit comments