Skip to content

Commit

Permalink
Improve readability of the changelog dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
jansol committed Sep 1, 2016
1 parent 7a89328 commit e856747
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/views/dialogs/ChangelogDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ export default class ChangelogDialog extends React.Component {
return (
<div key={repo}>
<h2>{repo}</h2>
<ul>
{this.state[repo].map(commit =>
<div key={commit.commit.url}><a href={commit.commit.url}>{commit.commit.message}</a></div>
<li key={commit.commit.url} className="mx_ChangelogDialog_li"><a href={commit.commit.url}>{commit.commit.message}</a></li>
)}
</ul>
</div>
)
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ limitations under the License.
max-height: 300px;
overflow: auto;
}

.mx_ChangelogDialog_li {
padding: 0.2em;
}

0 comments on commit e856747

Please sign in to comment.