-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
Spelling mistake in function name causing error #2793
Comments
Heh, oops. |
I am new to this Git thing.. and still not familiar how exactly these PR works.. but if anyone can tell me the steps? |
@jawadsahil The normal way to do a pull request (PR) is:
However, with something this simple, you can just:
|
@Soviut thanks for those steps! |
I can confirm that this issue occurs in the CodePen theme builder. http://codepen.io/heff/pen/EarCt |
https://github.com/videojs/video.js/blob/master/src/css/components/_progress.scss
Line 105 has a typo:
background: ligthen($secondary-background-color, 25%);
correct the spelling of ligthen;
It should be
background: lighten($secondary-background-color, 25%);
Thanks
The text was updated successfully, but these errors were encountered: