12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledDXBall = styled.div`
|
||
|
canvas {
|
||
|
height: 100%;
|
||
|
object-fit: contain;
|
||
|
width: 100%;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default StyledDXBall;
|