Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions josh-ui/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ nav {
}

pre.commit-message {
padding: 2em;
padding: 1em 2em;
margin:0em;
font-family: $font-main;
background: #111111;
}
Expand Down Expand Up @@ -137,7 +138,8 @@ pre.commit-message {
display: flex;
justify-content: space-between;
padding: .2em .5em;
margin-bottom: 0.7em;
margin-bottom: 0em;
margin-top: 0.2em;

&-select {
a {
Expand Down Expand Up @@ -186,6 +188,11 @@ pre.commit-message {

}

.diff-view-filename {
padding: 0.5em 2em;
font-family: $font-main;
}

.commit-list-entry-dir {
@include ui-link-clickable;
&:hover {
Expand Down
4 changes: 2 additions & 2 deletions josh-ui/src/DiffViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ export class DiffViewer extends React.Component<DiffViewerProps, State> {
if (this.state.content_a !== undefined
&& this.state.content_b !== undefined) {
return <div>
<div>{this.state.summary}</div>
<div>{this.props.path}</div>
<pre className="commit-message">{this.state.summary}</pre>
<div className="diff-view-filename">{this.props.path}</div>
<DiffEditor
modified={this.state.content_b}
original={this.state.content_a}
Expand Down