Various design fixes on side panel (#11165)

- Fix background color
- Fix Menu Item height
- Fix Input design
- Fix show page summary card design
This commit is contained in:
Raphaël Bosi
2025-03-25 16:21:10 +01:00
committed by GitHub
parent 45b8a330c6
commit b24046b1bb
8 changed files with 86 additions and 96 deletions

View File

@ -47,6 +47,8 @@ const StyledMenuItemCommandContainer = styled.div<{ isSelected?: boolean }>`
transition-property: none;
user-select: none;
width: calc(100% - 2 * var(--horizontal-padding));
box-sizing: border-box;
height: 40px;
&:hover {
background: ${({ theme }) => theme.background.transparent.lighter};
}