Skip to content

Commit

Permalink
fix: 🎨 select dropdown input color and placeholder color (#529)
Browse files Browse the repository at this point in the history
* fix: 🎨 select dropdown input color and placeholder color

* fix: 🎨 changed language input dropdown max-width
  • Loading branch information
AGhazy94 authored Aug 12, 2024
1 parent 645d540 commit 3f63e6d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/input/styles/SInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ const Bronze = css`
font-size: 14px;
line-height: 1.71;
text-align: left;
color: var(--form-item-text-color);
color: var(--text-01);
&::placeholder {
color: var(--text-03);
}
&:disabled {
opacity: 0.5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ const dataSource = [
title: "Italy",
solidLabelText: "en-US",
},
{
key: "long_input",
title: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Et quod.",
solidLabelText: "en-US",
},
{
key: "icon_title_label1",
title: "Portugal",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Bronze = css`
flex: 1 1 auto;
flex-direction: column;
align-items: flex-start;
max-width: calc(100% - 20px - 8px - 8px - 49px);
max-width: calc(100% - 8px);
`;

const Silver = css``;
Expand Down

0 comments on commit 3f63e6d

Please sign in to comment.