Skip to content

Commit e90766a

Browse files
jvgomgazz
authored andcommitted
fix: remove align-content style (#47)
* Remove align-content style * Add snapshots
1 parent 4e47955 commit e90766a

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

lib/Cell.js

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import PropTypes from "prop-types";
44
const Cell = styled.section`
55
height: 100%;
66
min-width: 0;
7-
align-content: space-around;
87
grid-column-end: ${({ width = 1 }) => `span ${width}`};
98
grid-row-end: ${({ height = 1 }) => `span ${height}`};
109

lib/__tests__/__snapshots__/Cell.test.js.snap

-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ exports[`<Cell/> 'middle' prop vertically aligns contents 1`] = `
44
.c0 {
55
height: 100%;
66
min-width: 0;
7-
-webkit-align-content: space-around;
8-
-ms-flex-line-pack: space-around;
9-
align-content: space-around;
107
grid-column-end: span 1;
118
grid-row-end: span 1;
129
display: -webkit-inline-box;
@@ -35,9 +32,6 @@ exports[`<Cell/> matches snapshot with default args 1`] = `
3532
.c0 {
3633
height: 100%;
3734
min-width: 0;
38-
-webkit-align-content: space-around;
39-
-ms-flex-line-pack: space-around;
40-
align-content: space-around;
4135
grid-column-end: span 1;
4236
grid-row-end: span 1;
4337
}

0 commit comments

Comments
 (0)