Make footer sit on bottom of page. Closes #2188
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user