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
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -103,7 +103,9 @@ const DesktopContent = ({
}) => {
const aboutTabContent = <CustomPageContent content={extraPageContent} />;
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 }];
@ -412,11 +414,10 @@ export const Content: FC = () => {
supportFediverseFeatures={supportFediverseFeatures}
/>
)}
<Footer version={version} />
{!isMobile && <Footer version={version} />}
</div>
{showChat && !isMobile && <Sidebar />}
</div>
{!isMobile && false && <Footer version={version} />}
</div>
{externalActionToDisplay && (
<ExternalModal