Skip to content

Commit

Permalink
BUGFIX: Readd missing padding in topbar in selection mode
Browse files Browse the repository at this point in the history
Resolves: #205
  • Loading branch information
Sebobo committed Oct 13, 2023
1 parent 734c7a5 commit ce0e8c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const TopBar: React.FC = () => {
const components = [ClipboardActions, SearchBox, AssetsFilter, SortOrderSelector, ViewModeSelector];

return (
<div className={cx(classes.topBar, selectionMode && classes.topBarSelectionMode)}>
<div className={cx(classes.topBar, selectionMode && classes['topBar--selectionMode'])}>
{components.map((Component, index) => (
<Component key={index} />
))}
Expand Down

0 comments on commit ce0e8c1

Please sign in to comment.