Skip to content

Commit

Permalink
fix: adjust sidebar filter empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-joe committed Dec 17, 2024
1 parent 501b53c commit dc1f21f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/app/sidebar/Sidebar.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.noMatchMessage {
font-size: 14px;
line-height: 19px;
color: var(--colors-grey200);
font-size: 13px;
line-height: 17px;
color: var(--colors-grey500);
text-align: center;
padding: var(--spacers-dp24) var(--spacers-dp12);
padding: var(--spacers-dp16) var(--spacers-dp8);
max-width: 100%;
word-break: break-word;
}
3 changes: 1 addition & 2 deletions src/app/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ type NoMatchMessageProps = {

const NoMatchMessage = ({ filter }: PropsWithChildren<NoMatchMessageProps>) => (
<div className={styles.noMatchMessage}>
{i18n.t('No menu items found for')} <br />
{filter}
{i18n.t('No menu items found for')} <br />{filter}
</div>
)

Expand Down

0 comments on commit dc1f21f

Please sign in to comment.