bruno/packages/grafnode-components/src/components/QueryUrl/StyledWrapper.js

34 lines
654 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const Wrapper = styled.div`
height: 2.3rem;
div.method-selector {
border: solid 1px #cfcfcf;
border-right: none;
background-color: #F6F8FA;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
div.input-container {
border: solid 1px #cfcfcf;
background-color: #F6F8FA;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
input {
background-color: #F6F8FA;
outline: none;
box-shadow: none;
&:focus {
outline: none !important;
box-shadow: none !important;
}
}
}
`;
export default Wrapper;