-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add vendor prefixing to distributed Sass version? #1
Comments
I think saying the SCSS version relies on Autoprefixer is a fine solution — these are your development files and should match your style. As far as I know, it's as designed for Sass to just fall back to standard |
Continuing thought on this: I had a bit of a problem with the compressed output style that node-sass was giving you and you're not really taking advantage of any Sass features here. Might be best to just have it written in CSS like Normalize. People who need a Sass version could just rename the file extension or fork this. Writing it in CSS would save you from those readability issues in that outputted CSS file. |
I think just using the |
I wonder if the Sass version could be made to make more use of Sass? If the I’ve been trying something like that here: normalize-opentype-with-mixin.scss. |
@Zegnat Hey, thanks. I appreciate you taking a stab at that but it’s not quite what I’m looking for. I actually added the I’m using Autoprefixer to build the |
While
normalize-opentype.css
includes the vendor prefixing,normalize-opentype.scss
doesn’t and will work best with Autoprefixer and the like. I’m open to reevaluating how this is done, if you’re using Sass and have a strong opinion, please share your setup! One option would be a vendor-prefixed version indist/
or dropping the Sass version entirely, as I also want to avoid confusion about which file to use.I think the ideal solution would be if libsass added support for importing plain CSS files.
The text was updated successfully, but these errors were encountered: