diff --git a/src/components/SavedItemPane.jsx b/src/components/SavedItemPane.jsx index 7eb8c61..2105431 100644 --- a/src/components/SavedItemPane.jsx +++ b/src/components/SavedItemPane.jsx @@ -228,8 +228,9 @@ export default class SavedItemPane extends Component { />
- {!this.state.filteredItems.length && - this.items.length &&
No match found.
} + {!this.state.filteredItems.length && this.items.length ? ( +
No match found.
+ ) : null} {this.state.filteredItems.map(item => (
))} - {!this.items.length && ( + {!this.items.length ? (

Nothing saved here.

- )} + ) : null}
); diff --git a/src/style.css b/src/style.css index 7683cb6..cdabe6e 100644 --- a/src/style.css +++ b/src/style.css @@ -109,6 +109,14 @@ p { margin-bottom: 2rem; } +.mt-1 { + margin-top: 1rem; +} + +.mt-2 { + margin-top: 2rem; +} + .mb-0 { margin-bottom: 0; }