Skip to content

Commit dc665ca

Browse files
fix #1:fix row space
1 parent aa645b1 commit dc665ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "layout-emotions",
3-
"version": "1.0.11",
3+
"version": "1.0.13",
44
"description": "Collection of layout emotion components",
55
"main": "dist/index.js",
66
"scripts": {

src/layout/row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ export const Row = styled.div`
88
--gap-y: 0;
99
display: flex;
1010
flex-wrap: wrap;
11-
width: 100%;
1211
margin-top: calc(-1 * var(--gap-y));
1312
margin-right: calc(-0.5 * var(--gap-x));
1413
margin-left: calc(-0.5 * var(--gap-x));
1514
> * {
1615
flex: 0 0 auto;
16+
width: 100%;
1717
box-sizing: border-box;
1818
max-width: 100%;
1919
padding-right: calc(var(--gap-x)*.5);

0 commit comments

Comments
 (0)