Standardize bottom section background + fix mobile tabs not hiding. Closes #2685
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user