mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 21:34:36 +01:00
17 lines
288 B
JavaScript
17 lines
288 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
.current-enviroment {
|
|
background: #efefef;
|
|
border-radius: 15px;
|
|
|
|
.caret {
|
|
margin-left: 0.25rem;
|
|
color: rgb(140, 140, 140);
|
|
fill: rgb(140, 140, 140);
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|