-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Accessibility Issues #118
Comments
@nickytonline Thanks for this issue! I'll definitely comb through with Axe to find our other issues and get them up |
There is also the WebAIM WAVE browser extension. |
Resolved with #121 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Accessibility Issues
In the PostAJobForm.js file, the
htmlFor
JSX prop (rendered as for HTML attribute) should beposition-type
notpositionType
.The
.text-blue-500
CSS class’color
property does not provide enough contrast. I messed around with the WebAIM Contrast Checker tool and this seemed like a suitable colour,#55556D
. that provides enough contrast and it still looks good.The validation error
.input-error
CSS class’color
property does not provide enough contrast. I messed around with the WebAIM Contrast Checker tool and this seemed like a suitable colour,#AF1818
. that provides enough contrast and it still looks good.The
<ReactQuill />
component has several accessibility issues. See slab/quill#2038 . It would probably make for a great PR that would help all using this editor support better accessibility.The text was updated successfully, but these errors were encountered: