Standardize bottom section background + fix mobile tabs not hiding. Closes #2685

This commit is contained in:
Gabe Kangas
2023-02-21 16:15:09 -08:00
parent 684e92f3d2
commit 3bb73af1c2
5 changed files with 41 additions and 25 deletions

View File

@@ -43,9 +43,14 @@ export const DesktopContent: FC<DesktopContentProps> = ({
setShowFollowModal,
supportFediverseFeatures,
}) => {
const aboutTabContent = <CustomPageContent content={extraPageContent} />;
const aboutTabContent = (
<div className={styles.bottomPageContentContainer}>
<CustomPageContent content={extraPageContent} />
</div>
);
const followersTabContent = (
<div>
<div className={styles.bottomPageContentContainer}>
<FollowerCollection name={name} onFollowButtonClick={() => setShowFollowModal(true)} />
</div>
);