mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
20 lines
307 B
JavaScript
20 lines
307 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.collection-dropdown {
|
|
color: rgb(110 110 110);
|
|
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
|
|
.tippy-box {
|
|
top: -0.5rem;
|
|
position: relative;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
`;
|
|
|
|
export default StyledWrapper; |