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

View File

@ -9,6 +9,7 @@
flex-direction: row;
background-color: var(--theme-color-background-header);
width: 100%;
min-height: 30px;
color: var(--theme-color-components-text-on-dark);
font-family: var(--theme-text-body-font-family);