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