You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that you set the input field outline to 0 in CSS.
#input-field:focus {
outline: 0; /* avoids blue shadow when clicking on button */
}
As Oliver mentioned on Wednesday, it's best practice to keep the outline for selected elements to allow for better accessibility. Maybe you could change it to a colour that fits better with your design?
The text was updated successfully, but these errors were encountered:
I noticed that you set the input field outline to 0 in CSS.
#input-field:focus {
outline: 0; /* avoids blue shadow when clicking on button */
}
As Oliver mentioned on Wednesday, it's best practice to keep the outline for selected elements to allow for better accessibility. Maybe you could change it to a colour that fits better with your design?
The text was updated successfully, but these errors were encountered: