mirror of
https://github.com/usebruno/bruno.git
synced 2025-01-08 06:59:43 +01:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
.current-enviroment {
|
|
background: #efefef;
|
|
border-radius: 15px;
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|