1
0
Fork 0
mirror of synced 2024-06-25 17:40:38 +12:00

Remove padding from empty layouts and add option for full width layout content

This commit is contained in:
Andrew Kingston 2021-07-10 11:56:32 +01:00
parent a9d4f09782
commit 05a06bc38a
2 changed files with 8 additions and 1 deletions

View file

@ -31,7 +31,7 @@
"type": "select",
"label": "Width",
"key": "width",
"options": ["Small", "Medium", "Large"],
"options": ["Small", "Medium", "Large", "Max"],
"defaultValue": "Large"
},
{

View file

@ -20,6 +20,7 @@
None: "none",
}
const widthClasses = {
Max: "max",
Large: "l",
Medium: "m",
Small: "s",
@ -178,6 +179,9 @@
position: relative;
padding: 32px;
}
.layout--none .main {
padding: 0;
}
.size--s {
width: 800px;
}
@ -187,6 +191,9 @@
.size--l {
width: 1400px;
}
.size--max {
width: 100%;
}
/* Nav components */
.burger {