11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import styled from "styled-components";
|
|
export default styled.div<{ width: number }>`
|
|
width: ${(props) => props.width}px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
background: ${(props) => {
|
|
return props.theme.colors.artboard;
|
|
}};
|
|
padding: 0 0 ${(props) => props.theme.canvasBottomPadding}px 0px;
|
|
`;
|