in common.scss line 8-11 you have
#main-outlet {
background-color: #fff;
min-height: calc(100vh - 88px);
}
replace with
#main-outlet {
background-color: #fff;
min-height: calc(100vh - 88px);
padding-left: 20px;
}
Before
After
in common.scss line 8-11 you have
#main-outlet {
background-color: #fff;
min-height: calc(100vh - 88px);
}
replace with
#main-outlet {
background-color: #fff;
min-height: calc(100vh - 88px);
padding-left: 20px;
}
Before
After
It’ll probably mess something up on the right when it spills over 20px but maybe not