SPFX Full Bleed WebPart - SPFx Full width
Install
npm install jquery @types/jquery
Include the below in your .ts or .tsx file
import * as jQuery from "jquery";
Add the following lines in the WebPart initialisation.
public onInit(): Promise<void> {
npm install jquery @types/jquery
Include the below in your .ts or .tsx file
import * as jQuery from "jquery";
Add the following lines in the WebPart initialisation.
public onInit(): Promise<void> {
return super.onInit().then(_ => {
jQuery("#workbenchPageContent").prop("style", "max-width: none");
jQuery(".SPCanvas-canvas").prop("style", "max-width: none");
jQuery(".CanvasZone").prop("style", "max-width: none");
});
}
Comments
Post a Comment