2021-12-04 12:30:03 +01:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
height: 2.3rem;
|
|
|
|
|
|
|
|
div.method-selector {
|
|
|
|
border: solid 1px #cfcfcf;
|
|
|
|
border-right: none;
|
2022-01-21 08:55:39 +01:00
|
|
|
background-color: #f3f3f3;
|
2022-01-18 19:41:51 +01:00
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-bottom-left-radius: 3px;
|
2021-12-04 12:30:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.input-container {
|
|
|
|
border: solid 1px #cfcfcf;
|
2022-01-21 08:55:39 +01:00
|
|
|
background-color: #f3f3f3;
|
2022-01-18 19:41:51 +01:00
|
|
|
border-top-right-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
2021-12-04 12:30:03 +01:00
|
|
|
|
|
|
|
input {
|
2022-01-21 08:55:39 +01:00
|
|
|
background-color: #f3f3f3;
|
2021-12-04 12:30:03 +01:00
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default Wrapper;
|