Fix download link styling and raise download description limits

This commit is contained in:
nmemmert
2026-05-04 15:08:27 -04:00
parent 554c248ea7
commit 79eb72635e
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -2225,7 +2225,7 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {
id={`resource-description-${link.id}`}
rows={3}
value={link.description ?? ''}
placeholder="Short description shown on the download page"
placeholder="Description shown on the download page"
onChange={e => updateLink(link.id, 'description', e.target.value)}
/>
</div>
@@ -2328,7 +2328,7 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {
id={`resources-archive-link-description-${link.id}`}
rows={3}
value={link.description ?? ''}
placeholder="Short description shown on the download page"
placeholder="Description shown on the download page"
onChange={e => updateArchivedSeriesLink(series.id, link.id, 'description', e.target.value)}
/>
</div>
+2
View File
@@ -1409,6 +1409,8 @@
padding: 1rem;
display: grid;
gap: 1rem;
text-decoration: none;
color: inherit;
}
.resource-download-header {