I want the page on https://www.gordonmarcy.com/app/#/ to be full-width (no borders or padding, mobile view). I have tried full-width in the page setup section, but it did not remove borders. I had a full-width plugin, but it wouldn’t work in conjunction with Sydney. I used a CSS hack to force the page full width, but would prefer to not do that, as it is making the content on other pages too stretched, e.g. https://www.gordonmarcy.com/about (mobile view).
CSS
@media (min-width: 1200px) {
.container {
width: 100% !important;
}
}
.page .page-wrap .content-wrapper {
padding: 0 !important;
}