add mobile button style

This commit is contained in:
plebeius.eth
2024-03-21 15:21:33 +01:00
parent 1493500643
commit e24fe8bc30
11 changed files with 63 additions and 7 deletions
+8 -3
View File
@@ -9,9 +9,14 @@ const PostForm = ({ address }: PostFormProps) => {
const { t } = useTranslation();
return (
<div className={styles.togglePostForm}>
[<span>{t('start_new_thread')}</span>]
</div>
<>
<div className={styles.postFormButtonDesktop}>
[<span>{t('start_new_thread')}</span>]
</div>
<div className={styles.postFormButtonMobile}>
<span>{t('start_new_thread')}</span>
</div>
</>
);
};