mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-09 17:25:24 +02:00
feat: migration to electron + next complete
This commit is contained in:
17
renderer/components/Sidebar/MenuBar/StyledWrapper.js
Normal file
17
renderer/components/Sidebar/MenuBar/StyledWrapper.js
Normal file
@ -0,0 +1,17 @@
|
||||
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;
|
Reference in New Issue
Block a user