Skip to content

Commit

Permalink
feat: Add styling for placeholder opacity (#176)
Browse files Browse the repository at this point in the history
* feat: Add styling for placeholder opacity

* chore: Update opacity of placeholders per PR
  • Loading branch information
lnicely authored Oct 8, 2024
1 parent f59605e commit be63cef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/design-system/src/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ select,
}
}
&:not([disabled]) {
&:not(input[type="checkbox"]):not(input[type="radio"]) {
&:not(input[type='checkbox']):not(input[type='radio']) {
background: revert !important;
padding-right: revert !important;
}
Expand Down Expand Up @@ -99,3 +99,7 @@ form button[type="submit"] {
.form-check-group .form-check {
margin-top: 0;
}

input::placeholder {
opacity: 0.75;
}

0 comments on commit be63cef

Please sign in to comment.