Merge pull request #1412 from joelfmrodrigues/wc-fix-width-bug
Update styles to fix bug on full-width
This commit is contained in:
commit
c0daa2c78d
|
@ -52,6 +52,7 @@ Version|Date|Comments
|
|||
1.2|June 04, 2020|Added full-width support
|
||||
1.3|July 07, 2020|Simplified web part
|
||||
1.4|July 28, 2020|Update styles to minimise toolbar overlap
|
||||
1.5|July 30, 2020|Update styles to improve full-width mode
|
||||
|
||||
## Disclaimer
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"solution": {
|
||||
"name": "workbench-customizer-client-side-solution",
|
||||
"id": "5d6f4a5a-9d2b-4a93-a283-16b8f5ea75d6",
|
||||
"version": "1.4.0.0",
|
||||
"version": "1.5.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"skipFeatureDeployment": true
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "workbench-customizer",
|
||||
"version": "1.4.0",
|
||||
"version": "1.5.0",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
.CanvasZone {
|
||||
margin: auto;
|
||||
padding-left: 24px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.CanvasZone--noMargin {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
.CanvasComponent {
|
||||
.CanvasZone {
|
||||
max-width: 100%;
|
||||
padding-left: 0;
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0;
|
||||
|
||||
.CanvasSection {
|
||||
|
|
Loading…
Reference in New Issue