mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Make footer sit on bottom of page. Closes #2188
This commit is contained in:
parent
9cc7b1cf2d
commit
4bac079a73
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue