|
@@ -1340,7 +1340,12 @@ function publishNFTTweetEvent({ groupId, postId, srcContent }) {
|
|
|
}, () => { });
|
|
|
|
|
|
setTimeout(() => {
|
|
|
- document.querySelector('a[data-testid="AppTabBar_Profile_Link"]').click()
|
|
|
+ document.querySelector('a[data-testid="AppTabBar_Profile_Link"]').click();
|
|
|
+ setGroupTabSelfStyle({
|
|
|
+ groupColor: 'rgb(83, 100, 113)',
|
|
|
+ groupFontWeight: '500',
|
|
|
+ lineDisplay: 'none'
|
|
|
+ });
|
|
|
}, 2000);
|
|
|
});
|
|
|
}, 800)
|
|
@@ -1915,10 +1920,12 @@ const setTabContentStyle = (params) => {
|
|
|
if (visibility == 'hidden') {
|
|
|
tweetTabContent.style.visibility = 'visible';
|
|
|
tweetTabContent.style.height = 'auto';
|
|
|
+ tweetTabContent.style.overflow = 'auto';
|
|
|
}
|
|
|
} else {
|
|
|
tweetTabContent.style.visibility = 'hidden';
|
|
|
tweetTabContent.style.height = '0px';
|
|
|
+ tweetTabContent.style.overflow = 'hidden';
|
|
|
}
|
|
|
}
|
|
|
|