31 lines
545 B
TypeScript
31 lines
545 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledRuffle = styled.div`
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
|
||
|
&.drop {
|
||
|
&::before {
|
||
|
color: #ffad33;
|
||
|
content: "Drop SWF/SPL file here";
|
||
|
display: flex;
|
||
|
font-size: 16px;
|
||
|
font-weight: 600;
|
||
|
height: 100%;
|
||
|
left: 0;
|
||
|
place-content: center;
|
||
|
place-items: center;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ruffle-player {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default StyledRuffle;
|