mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-13 10:11:15 +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;
|