- Fix the page layout, the footer was in the content section causing it not to remain at the bottom and just reside 'at the bottom' of the content section. Also added a 100% on the outer container height (100vh) so the grey background fills the page
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -363,10 +363,9 @@ export function Manage({conflict, bodyshop}) {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ChatAffixContainer bodyshop={bodyshop} chatVisible={chatVisible}/>
|
<ChatAffixContainer bodyshop={bodyshop} chatVisible={chatVisible}/>
|
||||||
<Layout className="layout-container">
|
<Layout style={{minHeight: '100vh'}}className="layout-container">
|
||||||
<UpdateAlert/>
|
<UpdateAlert/>
|
||||||
<HeaderContainer/>
|
<HeaderContainer/>
|
||||||
|
|
||||||
<Content className="content-container">
|
<Content className="content-container">
|
||||||
<PartnerPingComponent/>
|
<PartnerPingComponent/>
|
||||||
<Sentry.ErrorBoundary fallback={<ErrorBoundary/>} showDialog>
|
<Sentry.ErrorBoundary fallback={<ErrorBoundary/>} showDialog>
|
||||||
@@ -374,6 +373,8 @@ export function Manage({conflict, bodyshop}) {
|
|||||||
</Sentry.ErrorBoundary>
|
</Sentry.ErrorBoundary>
|
||||||
|
|
||||||
<FloatButton.BackTop style={{right: 100, bottom: 25}}/>
|
<FloatButton.BackTop style={{right: 100, bottom: 25}}/>
|
||||||
|
|
||||||
|
</Content>
|
||||||
<Footer>
|
<Footer>
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
@@ -397,7 +398,6 @@ export function Manage({conflict, bodyshop}) {
|
|||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</Footer>
|
</Footer>
|
||||||
</Content>
|
|
||||||
</Layout>
|
</Layout>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user