Make footer sit on bottom of page. Closes #2188

This commit is contained in:
Gabe Kangas
2023-01-11 18:56:10 -08:00
parent 9cc7b1cf2d
commit 4bac079a73

View File

@@ -103,7 +103,9 @@ const DesktopContent = ({
}) => { }) => {
const aboutTabContent = <CustomPageContent content={extraPageContent} />; const aboutTabContent = <CustomPageContent content={extraPageContent} />;
const followersTabContent = ( const followersTabContent = (
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} /> <div style={{ minHeight: '15vh' }}>
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
</div>
); );
const items = [{ label: 'About', key: '2', children: aboutTabContent }]; const items = [{ label: 'About', key: '2', children: aboutTabContent }];
@@ -412,11 +414,10 @@ export const Content: FC = () => {
supportFediverseFeatures={supportFediverseFeatures} supportFediverseFeatures={supportFediverseFeatures}
/> />
)} )}
<Footer version={version} /> {!isMobile && <Footer version={version} />}
</div> </div>
{showChat && !isMobile && <Sidebar />} {showChat && !isMobile && <Sidebar />}
</div> </div>
{!isMobile && false && <Footer version={version} />}
</div> </div>
{externalActionToDisplay && ( {externalActionToDisplay && (
<ExternalModal <ExternalModal