Skip to content

Commit ca01f01

Browse files
committed
added small design change
1 parent f591da5 commit ca01f01

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nextstep-frontend/src/pages/MainDashboard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@ const MainDashboard: React.FC = () => {
217217
GitHub Repositories
218218
</Typography>
219219
}
220-
<ul>
220+
<ul style={{ listStyleType: 'none', padding: 0, textAlign: 'center' }}>
221221
{repos.map((repo) => (
222-
<li key={repo.id}>
223-
<a href={repo.html_url} target="_blank" rel="noopener noreferrer">
222+
<li key={repo.id} style={{ margin: '8px 0' }}>
223+
<a href={repo.html_url} target="_blank" rel="noopener noreferrer" style={{ textDecoration: 'none', color: '#1976d2', fontWeight: 'bold' }}>
224224
{repo.name}
225225
</a>
226226
</li>

0 commit comments

Comments
 (0)