14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledClassiCube = styled.div`
|
||
|
height: ${({ theme }) => `calc(100% - ${theme.sizes.titleBar.height}px)`};
|
||
|
width: 100%;
|
||
|
|
||
|
canvas {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default StyledClassiCube;
|