diff --git a/scm-ui-components/packages/ui-components/src/repos/DiffFile.js b/scm-ui-components/packages/ui-components/src/repos/DiffFile.js index 1ad11ffef1..4742975b53 100644 --- a/scm-ui-components/packages/ui-components/src/repos/DiffFile.js +++ b/scm-ui-components/packages/ui-components/src/repos/DiffFile.js @@ -50,6 +50,9 @@ const styles = { /* prevent following content from moving down */ "& > .diff-gutter:empty:hover::after": { fontSize: "0.7rem" + }, + "& .diff-line": { + fontSize: "0.75rem" } } }; @@ -57,6 +60,7 @@ const styles = { type Props = DiffObjectProps & { file: File, collapsible: true, + // context props classes: any, t: string => string @@ -230,7 +234,7 @@ class DiffFile extends React.Component { : null; icon = "fa fa-angle-down"; body = ( -
+
{fileAnnotations} {file.hunks.map(this.renderHunk)}