fix color and translation

This commit is contained in:
Tom (plebeius.eth)
2024-10-13 18:49:45 +02:00
parent 3cdeaeb09c
commit 1d99fc4a74
37 changed files with 72 additions and 36 deletions
+1 -1
View File
@@ -391,7 +391,7 @@ const PostFormTable = ({ closeForm, postCid }: { closeForm: () => void; postCid:
<td>{t('board')}</td>
<td>
<select onChange={(e) => setSubmitStore({ subplebbitAddress: e.target.value })} value={subplebbitAddress}>
<option value=''>--{t('no_board_selected')}--</option>
<option value=''>{t('choose_one')}</option>
{isInAllView &&
defaultSubplebbitAddresses.map((address: string) => (
<option key={address} value={address}>
+1
View File
@@ -1,4 +1,5 @@
.footer {
color: var(--post-mobile-abbr-text-color);
padding: 15px 0 10px 5px;
}