From 36133e639c06ce8994cb68ac14b1b97131fe1dae Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Wed, 21 Oct 2020 10:48:45 +0200 Subject: [PATCH] Fix vertical placement of comments and code in pr diff view --- scm-ui/ui-components/src/repos/DiffFile.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scm-ui/ui-components/src/repos/DiffFile.tsx b/scm-ui/ui-components/src/repos/DiffFile.tsx index 77d44ec595..c977e228a4 100644 --- a/scm-ui/ui-components/src/repos/DiffFile.tsx +++ b/scm-ui/ui-components/src/repos/DiffFile.tsx @@ -93,6 +93,11 @@ const ChangeTypeTag = styled(Tag)` const MarginlessModalContent = styled.div` margin: -1.25rem; + + & .panel-block { + flex-direction: column; + align-items: stretch; + } `; class DiffFile extends React.Component {