-
Notifications
You must be signed in to change notification settings - Fork 129
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
Use :first-child #10
Comments
This There is actually no mixins that uses Introducing this change right now may seems weird, since I just released the library. |
### v1.0.3 - `first()` mixin now uses `:first-child` if the given parameter is `1`, closing [#10](#10) - `n-between()` mixin added ( [see](#) ), closing [#35](#35) - `at-least()`, `at-most()` and `in-between()` quantity queries mixins added ( [see](#) ), closing [#24](#24) - `pair-between()` is now `even -between()`, closing [#34](#34) - `impair-between()` is now `odd-between()`, closing [#34](#34) - Source code for the header pattern generator added in the about modal - Version number added in the footer - `backdrop-filter` removed from the about page
fixed in 003472a |
@LukyVj just a heads-up; I can't seem to find this fix in the latest build (or I am missing it somehow 👍 ) |
Hey, thanks for the heads up! You're right, I added it in the sass file from the components folder, but I forgot to update the source file. You can find it here https://github.com/LukyVj/family.scss/blob/master/source/stylesheets/vendors/_family.scss Updating it now! |
Awesome, thanks so much! |
Use
:first-child
instead of:nth-child(1)
:first-child
== IE7/8:nth-child
== IE9https://developer.mozilla.org/fr/docs/Web/CSS/:nth-child
https://developer.mozilla.org/fr/docs/Web/CSS/:first-child
The text was updated successfully, but these errors were encountered: