fix: History sidebar header shrinking when lots of history

This commit is contained in:
Tom Moor
2020-09-11 12:10:40 -07:00
parent c298c73240
commit d5f5319f80
3 changed files with 4 additions and 1 deletions

View File

@@ -193,6 +193,7 @@ const Header = styled(Flex)`
padding: 12px;
border-bottom: 1px solid ${(props) => props.theme.divider};
color: ${(props) => props.theme.text};
flex-shrink: 0;
`;
export default inject("documents", "revisions")(DocumentHistory);