mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
26 lines
438 B
JavaScript
26 lines
438 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.create-request {
|
|
color: #737373;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.create-request-options {
|
|
.http, .graphql {
|
|
cursor: pointer;
|
|
padding-right: 1rem;
|
|
padding-top: 0.5rem;
|
|
padding-bottom: 0.5rem;
|
|
|
|
&:hover {
|
|
span.name {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|