feat: add custom AppMenu component for windows & linux (#6934)

* feat: add custom AppMenu component for windows & linux

* fixes

* fixes

* fixes

* fixes
This commit is contained in:
naman-bruno
2026-01-30 22:58:36 +05:30
committed by GitHub
parent 3112380289
commit ba166561cc
9 changed files with 375 additions and 28 deletions

View File

@@ -173,6 +173,18 @@ const Wrapper = styled.div`
background-color: ${(props) => props.theme.dropdown.separator};
margin: 0.25rem 0;
}
.submenu-trigger {
position: relative;
}
.submenu-arrow {
color: ${(props) => props.theme.dropdown.mutedText};
flex-shrink: 0;
display: flex;
align-items: center;
margin-left: auto;
}
`;
export default Wrapper;