Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/components/Sidebar/HeadlampButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ export default function HeadlampButton({
return (
<Box>
<Button
color="inherit"
onClick={onToggleOpen}
sx={theme => ({
sx={{
padding: isSmall && !open ? `10px 10px` : '6px 8px',
color: theme.palette.text.primary,
})}
}}
aria-label={open ? t('Shrink sidebar') : t('Expand sidebar')}
disabled={disabled}
>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/globalSearch/GlobalSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export function GlobalSearch({ isIconButton }: { isIconButton?: boolean }) {
const iconSize = isIconButton ? 24 : 18;
const textFieldPlaceholder = smallBreakpoint ? (
<IconButton
color="inherit"
size="medium"
sx={
isIconButton
Expand Down
Loading