soupette 819a403340 Created temp input file
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-03-10 10:25:24 +01:00

44 lines
745 B
JavaScript

import styled from 'styled-components';
const Wrapper = styled.div`
.inputFile {
overflow: hidden;
position: absolute;
z-index: -1;
opacity: 0;
}
.buttonContainer {
width: 100%;
height: 34px;
line-height: 34px;
text-align: center;
background-color: #fafafb;
border-top: 0;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
color: #333740;
font-size: 12px;
font-weight: 700;
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-transform: uppercase;
> i,
> svg {
margin-right: 10px;
}
}
.copy {
cursor: copy !important;
}
.inputFileControlForm {
padding: 0;
height: auto;
}
`;
export default Wrapper;