add board buttons row for mobile and desktop, global styling for button

This commit is contained in:
plebeius.eth
2024-03-22 12:09:17 +01:00
parent 7e33a5de8e
commit 80c3a51328
9 changed files with 123 additions and 50 deletions
+2 -2
View File
@@ -11,10 +11,10 @@ const PostForm = ({ address }: PostFormProps) => {
return (
<>
<div className={styles.postFormButtonDesktop}>
[<span>{t('start_new_thread')}</span>]
[<button className='button'>{t('start_new_thread')}</button>]
</div>
<div className={styles.postFormButtonMobile}>
<span>{t('start_new_thread')}</span>
<button className='button'>{t('start_new_thread')}</button>
</div>
</>
);