Skip to content
Snippets Groups Projects
Unverified Commit d1da8f80 authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Fix app modals sizing (#25555)

parent 2999620b
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ export const ModalRoot = styled.div`
display: flex;
flex-direction: column;
flex: 1 0 auto;
min-height: 50vh;
height: 60vh;
`;
export const ModalHeader = styled.div`
......@@ -27,6 +27,8 @@ export const ModalBody = styled.div`
flex: 1;
padding: 0 1rem 1rem 1rem;
overflow-y: scroll;
`;
export const ModalFooter = styled.div`
......
......@@ -5,7 +5,7 @@ export const ModalRoot = styled.div`
display: flex;
flex-direction: column;
flex: 1 0 auto;
min-height: 50vh;
height: 60vh;
`;
export const ModalHeader = styled.div`
......@@ -27,6 +27,8 @@ export const ModalBody = styled.div`
flex: 1;
padding: 0 1rem 1rem 1rem;
overflow-y: scroll;
`;
export const ModalFooter = styled.div`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment