- Notifications
You must be signed in to change notification settings - Fork328
Invalid forms style#1143
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Invalid forms style#1143
Changes from1 commit
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -257,6 +257,19 @@ | ||
caret-color: #{$input-color}; | ||
} | ||
.form-control { | ||
&.is-invalid { | ||
&:focus { | ||
box-shadow: none; | ||
border-width: 2px; | ||
} | ||
} | ||
} | ||
.invalid-feedback { | ||
--bs-danger-text: #{$peach-shade-100}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. As of now all the error colors should be the same and use the variable $error set to $peach-shade-100. So, it might be best to use $error and deviate later if needed. Same comment for the above $form-feedback-invalid-color: | ||
} | ||
.hourly-rate { | ||
display: flex; | ||
flex-direction: row; | ||