21 lines
430 B
TypeScript
21 lines
430 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledV86 = styled.div`
|
|
canvas {
|
|
background-color: #000;
|
|
height: auto !important;
|
|
width: auto !important;
|
|
}
|
|
|
|
div {
|
|
font-family: "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
line-height: normal;
|
|
position: relative;
|
|
white-space: pre;
|
|
}
|
|
`;
|
|
|
|
export default StyledV86;
|