Remove padding from empty layouts and add option for full width layout content
This commit is contained in:
parent
aa2691a452
commit
7392ad8eb2
|
@ -31,7 +31,7 @@
|
|||
"type": "select",
|
||||
"label": "Width",
|
||||
"key": "width",
|
||||
"options": ["Small", "Medium", "Large"],
|
||||
"options": ["Small", "Medium", "Large", "Max"],
|
||||
"defaultValue": "Large"
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue