PromucFlow_constructor/app/client/src/components/designSystems/appsmith/CenteredWrapper.tsx
Pranav Kanade 7ba60bdaff
fix: link for resolved comment does not show a comment thread (#7001)
* minor fix to show empty app banner in the middle of the screen

* enforce the resolved comments filter, when user tries to open resolved comment directly through shared link

* minor fix: changed var name

* small fix to properly show the comment card action btns

* fix: if thread not present will show a warning
2021-08-31 19:56:43 +05:30

11 lines
249 B
TypeScript

import styled from "styled-components";
export default styled.div`
height: ${(props) => `calc(100vh - ${props.theme.smallHeaderHeight})`};
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
`;