We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This tag is similar to div in HTML and Box in Nitron Styles Tools, but unlike Box , you should be able to use a grid.
div
It should be easier to construct grid-like layouts without using CSS.
You should be able to use your component like this:
const App = ` <Layout row="" col="" gap=""> </Layout> `
The following properties of the component:
row
col
gap
type
The rest of the properties should be the same as Box .
The text was updated successfully, but these errors were encountered:
Add layout component (#1)
ee870f4
No branches or pull requests
Proposal
This tag is similar to
div
in HTML and Box in Nitron Styles Tools, but unlike Box , you should be able to use a grid.Purpose
It should be easier to construct grid-like layouts without using CSS.
Example when this is implemented
You should be able to use your component like this:
The following properties of the component:
row
: Specify inline start and inline end edges to size and position grid items within grid rows.col
: Specifies the size and position of grid items in grid columns by providing lines, extents, or nothing for grid placement.gap
: Gives space between rows and columns.type
: Sets the layout to use when placing child elements such as flow, grid, and flex, along with whether to process block or inline elements.The rest of the properties should be the same as Box .
other requirements
The text was updated successfully, but these errors were encountered: