fix(ui) Fix glossary side browser width fluctuating (#6457)

Co-authored-by: Chris Collins <chriscollins@Chriss-MBP-2-753.lan>
This commit is contained in:
Chris Collins 2022-11-16 12:26:51 -05:00 committed by GitHub
parent e530faf865
commit 9b5188ebc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,7 @@ const MainContentWrapper = styled.div`
export const BrowserWrapper = styled.div<{ width: number }>`
max-height: 100%;
width: ${(props) => props.width}px;
min-width: ${(props) => props.width}px;
`;