Make the footer have a consistant height

This commit is contained in:
Gabe Kangas
2023-01-13 00:28:05 -08:00
parent e784738184
commit 2c2dae9e00
2 changed files with 2 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ const DesktopContent = ({
}) => {
const aboutTabContent = <CustomPageContent content={extraPageContent} />;
const followersTabContent = (
<div style={{ minHeight: '15vh' }}>
<div style={{ minHeight: '16vh' }}>
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
</div>
);