Give the lower section a min height to push the footer to the bottom. Closes #2188
This commit is contained in:
@@ -103,7 +103,7 @@ const DesktopContent = ({
|
|||||||
}) => {
|
}) => {
|
||||||
const aboutTabContent = <CustomPageContent content={extraPageContent} />;
|
const aboutTabContent = <CustomPageContent content={extraPageContent} />;
|
||||||
const followersTabContent = (
|
const followersTabContent = (
|
||||||
<div style={{ minHeight: '16vh' }}>
|
<div>
|
||||||
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
|
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -126,7 +126,7 @@ const DesktopContent = ({
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.lowerSection}>
|
<div className={styles.lowerSection} style={{ minHeight: '16vh' }}>
|
||||||
{items.length > 1 ? <Tabs defaultActiveKey="0" items={items} /> : aboutTabContent}
|
{items.length > 1 ? <Tabs defaultActiveKey="0" items={items} /> : aboutTabContent}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user