Skip to content
Merged
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
4 changes: 2 additions & 2 deletions packages/desktop/app/stylesheets/renderer.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

/* To offset frameless window nav buttons on Mac */
.mac-desktop #editor-column,
.mac-desktop #notes-column {
.mac-desktop #items-column {
transition: 0.15s padding ease;
}

.mac-desktop #app.collapsed-notes.collapsed-navigation #editor-column {
padding-top: 18px;
}

.mac-desktop #app.collapsed-navigation #notes-column {
.mac-desktop #app.collapsed-navigation #items-column {
padding-top: 18px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const DecoratedInput = forwardRef(

return (
<div className={`${classNames.container} ${disabled ? classNames.disabled : ''} ${className}`}>
<div className=""></div>
{left && (
<div className="flex items-center px-2 py-1.5">
{left.map((leftChild, index) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class PanelResizer extends Component<Props, State> {
alwaysVisible={this.props.alwaysVisible}
pressed={this.state.pressed}
collapsed={this.state.collapsed}
className={this.props.side}
className={`panel-resizer ${this.props.side}`}
onMouseDown={this.onMouseDown}
ref={this.resizerElementRef}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const SearchBar = ({ itemListController, searchOptionsController }: Props) => {
}, [clearFilterText])

return (
<div className="px-2.5 pt-2.5 pb-0.5" role="search">
<div className="px-2.5 pt-4 pb-0.5" role="search">
<DecoratedInput
autocomplete={false}
title="Searches notes and files in the currently selected tag"
Expand Down