1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-18 10:51:21 +02:00

feat(admin-plugin): add new .col and .row styles #211

This commit is contained in:
Awilum
2020-02-04 22:54:20 +03:00
parent b2f4b0c9f2
commit ee0703c1b2

View File

@@ -19,3 +19,22 @@
width: calc(100% - var(--box-size));
}
.row
{
display: flex;
flex-wrap: wrap;
margin-right: -10px;
margin-left: -10px;
}
.col
{
position: relative;
width: 100%;
padding-right: 10px;
padding-left: 10px;
}