Add padding around search input

This commit is contained in:
David Granado 2022-01-27 21:45:50 -06:00 committed by Thomas Zarebczan
parent 8e94044904
commit 5048c460f1
2 changed files with 4 additions and 2 deletions

View file

@ -306,7 +306,7 @@ function SideNavigation(props: Props) {
return ( return (
<> <>
<ul className="navigation__secondary navigation-links"> <ul className="navigation__secondary navigation-links">
<li> <li className="navigation-item">
<div className="wunderbar"> <div className="wunderbar">
<Icon icon={ICONS.SEARCH} /> <Icon icon={ICONS.SEARCH} />
<input <input

View file

@ -288,8 +288,10 @@
} }
.navigation-item { .navigation-item {
padding: var(--spacing-s);
.empty { .empty {
padding: var(--spacing-s); padding: 0;
} }
} }