feat(search-bar): better search back result

This commit is contained in:
Corentin Thomasset 2022-12-16 21:44:54 +01:00
parent 1b5d4e72bd
commit 71e98e93e5
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 78 additions and 8 deletions

View file

@ -6,6 +6,12 @@ export const lightThemeOverrides: GlobalThemeOverrides = {
},
Layout: { color: '#f1f5f9' },
AutoComplete: {
peers: {
InternalSelectMenu: { height: '500px' },
},
},
};
export const darkThemeOverrides: GlobalThemeOverrides = {
@ -16,6 +22,12 @@ export const darkThemeOverrides: GlobalThemeOverrides = {
primaryColorSuppl: '#36AD6AFF',
},
AutoComplete: {
peers: {
InternalSelectMenu: { height: '500px', color: '#1e1e1e' },
},
},
Menu: {
itemHeight: '32px',
},