mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 05:14:04 +01:00
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.div`
|
||
|
background-color: rgb(44, 44, 44);
|
||
|
color: rgba(255, 255, 255, 0.5);
|
||
|
|
||
|
.menu-item {
|
||
|
padding: 0.6rem;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover, &.active {
|
||
|
color: rgba(255, 255, 255);
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default Wrapper;
|