Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release #1100

Merged
merged 11 commits into from
Oct 17, 2024
Prev Previous commit
Next Next commit
fix: double border on search input in light mode
sunnyzanchi committed Oct 16, 2024
commit 699e00c329d0445358c406dfc347b479fb03109c
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@ export default css`
--search-dropdown-background: #fff;
--search-dropdown-border: #e7e9ea;
--search-dropdown-hover: rgba(0, 0, 0, 0.06);
--search-input-border: none;

input::placeholder {
color: var(--primary-text-color);
@@ -82,6 +83,7 @@ export default css`
--search-dropdown-background: #1a2125;
--search-dropdown-border: #eaecec;
--search-dropdown-hover: rgba(255, 255, 255, 0.1);
--search-input-border: 1px solid #eaecec;

input::placeholder {
color: var(--primary-text-color);
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ const SearchInput = forwardRef(
css={css`
--horizontal-spacing: ${HORIZONTAL_SPACING[size]};

border: 1px solid #eaecec;
border: var(--search-input-border);
border-radius: 4px;
position: relative;
width: ${width || '100%'};