Skip to content

Commit

Permalink
consistent sidebar overlay style
Browse files Browse the repository at this point in the history
  • Loading branch information
bodobraegger committed Sep 2, 2023
1 parent 9b73a7f commit d2589b3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,17 @@ const Header = ({ t }: Props) => {
transform: 'none',
borderRadius: '0',
borderRight: '1px solid var(--color-border-default)',
borderBottomRightRadius: '6px',
borderTopRightRadius:'6px',
borderBottomRightRadius: '6px !important',
borderTopRightRadius:'6px !important',
}}
>
<Dialog.Header
style={{ paddingTop: '0px', background: 'none' }}
id="sidebar-overlay-header"
sx={{ display: 'block' }}
sx={{
borderRadius: '0',
borderBottomRightRadius: '6px !important',
borderTopRightRadius:'6px !important',
}}
>
SidebarNav Header
</Dialog.Header>
Expand Down Expand Up @@ -197,7 +200,6 @@ const Header = ({ t }: Props) => {
icon={SearchIcon}
/>
<IconButton
className="px-3"
onClick={() => setIsSearchOpen(!isSearchOpen)}
aria-label="Close Search Bar"
aria-expanded={isSearchOpen ? 'true' : 'false'}
Expand Down

0 comments on commit d2589b3

Please sign in to comment.