layout-emotions
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -144,2 +144,10 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }// src/layout/container.ts | ||
// src/misc/index.ts | ||
var fieldLayoutRow = ` | ||
.mfield-row { | ||
flex-direction: row; | ||
justify-content: space-between; | ||
} | ||
`; | ||
// src/layout/row.ts | ||
@@ -165,2 +173,3 @@ var Row = _styled2.default.div` | ||
${spacing_default} | ||
${fieldLayoutRow} | ||
`; | ||
@@ -167,0 +176,0 @@ |
{ | ||
"name": "layout-emotions", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Collection of layout emotion components", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
# Layout Emotions | ||
## About | ||
This contains a collection of layout emotion components. | ||
[![CodeFactor](https://www.codefactor.io/repository/github/manojgetwealthy/layout-emotions/badge)](https://www.codefactor.io/repository/github/manojgetwealthy/layout-emotions) | ||
A collection of layout components meant to be used for `css in js` requirements. | ||
## Change logs | ||
Added clas for field layouts | ||
## Components | ||
* Container | ||
* Row | ||
* Row |
import styled from "@emotion/styled"; | ||
import columnsCSS from "./columns"; | ||
import spacingCSS from "./../spacing"; | ||
import { fieldLayoutRow } from "./../misc"; | ||
@@ -24,2 +25,3 @@ export const Row = styled.div` | ||
${spacingCSS} | ||
${fieldLayoutRow} | ||
`; |
Sorry, the diff of this file is not supported yet
349
13
17259