* 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
11 lines
249 B
TypeScript
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;
|
|
`;
|