Skip to content

Commit

Permalink
Fix input group background
Browse files Browse the repository at this point in the history
  • Loading branch information
2-towns committed Nov 26, 2024
1 parent 894c6d9 commit 6fd2ee9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"url": "https://github.com/codex-storage/codex-marketplace-ui-components"
},
"version": "0.0.49",
"version": "0.0.50",
"type": "module",
"scripts": {
"prepack": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Input/input.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@property --codex-input-background-color {
syntax: "<color>";
inherits: false;
inherits: true;
initial-value: rgba(20, 20, 20, 0.6);
}

Expand Down
7 changes: 7 additions & 0 deletions src/components/InputGroup/inputGroup.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
initial-value: rgba(150, 150, 150, 0.2);
}

@property --codex-input-group-background-color {
syntax: "<color>";
inherits: true;
initial-value: rgba(20, 20, 20, 0.6);
}

.input-group {
box-sizing: border-box;

Expand Down Expand Up @@ -38,6 +44,7 @@
border-bottom-right-radius: var(--codex-input-group-border-radius);
height: 64px;
box-sizing: border-box;
background-color: var(--codex-input-group-background-color);

select {
border-top-left-radius: 0;
Expand Down

0 comments on commit 6fd2ee9

Please sign in to comment.