Commit 9873491d authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: increases tokens search background contrast (#4443)

parent 5d64ab01
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#99A1BD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
......@@ -16,14 +16,14 @@ const SearchInput = styled.input`
background-image: url(${searchIcon});
background-size: 20px 20px;
background-position: 12px center;
background-color: 'transparent';
background-color: ${({ theme }) => theme.backgroundSurface};
border-radius: 12px;
border: 1px solid ${({ theme }) => theme.backgroundOutline};
height: 100%;
width: min(300px, 100%);
font-size: 16px;
padding-left: 40px;
color: ${({ theme }) => theme.textPrimary};
color: ${({ theme }) => theme.textSecondary};
:hover {
background-color: ${({ theme }) => theme.backgroundModule};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment