mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fixing list view for longer texts and layout
This commit is contained in:
parent
a01194d780
commit
e6ef9c98ca
1 changed files with 4 additions and 6 deletions
|
|
@ -27,10 +27,10 @@ const Item = styled('li', {
|
|||
listStyleType: 'none',
|
||||
p: '8px',
|
||||
borderRadius: '5px',
|
||||
textOverflow: 'ellipsis',
|
||||
|
||||
display: 'flex',
|
||||
justifyContent: 'flex-start',
|
||||
width: '95%',
|
||||
overflow: 'auto',
|
||||
alignItems: 'center',
|
||||
'& svg': {
|
||||
marginRight: '10px',
|
||||
|
|
@ -197,10 +197,8 @@ export function LibrarySearchBar(props: LibrarySearchBarProps): JSX.Element {
|
|||
: 'transparent',
|
||||
}}
|
||||
>
|
||||
<Item>
|
||||
<Clock size={20} />
|
||||
{item}
|
||||
</Item>
|
||||
<Clock size={20} />
|
||||
<Item>{item}</Item>
|
||||
<X
|
||||
width={20}
|
||||
height={20}
|
||||
|
|
|
|||
Loading…
Reference in a new issue