Thinking about killing the Bootrstrap wrapper for the application widgets. Currently we have the following code on near social gateway: ```jsx <div className="container-xl"> <div className="row"> <div className="d-inline-block position-relative overflow-hidden" style={{ "--body-top-padding": "24px", paddingTop: "var(--body-top-padding)", }} > <Widget key={src} src={src} props={widgetProps} /> </div> </div> </div> ``` The proposed option is to remove all of it and just fix the navigation bar to provide proper margin: ```jsx <Widget key={src} src={src} props={widgetProps} /> ``` Applications will have to manage their own paddings. This will allow you to have full width control (except for top menu) without white margins of the sides.