xdamman / selection-sharer

Medium like popover menu to share on Twitter or by email any text selected on the page
MIT License
509 stars 104 forks source link

Include SASS/SCSS file with distribution #45

Open dlewand691 opened 7 years ago

dlewand691 commented 7 years ago

Would love to have a .scss file included so I can import into my projects. Currently I copy the .css file out and change the extension to .scss. Having the .scss included in the distribution ensures that I'm using the latest version.

Thanks!

shri3k commented 7 years ago

I don't see any sass being included in this project so I don't understand why it should have .scss as an extension.

dlewand691 commented 7 years ago

Exactly. There's no sass file but would be nice to have one so it can be customized with variables, etc.

Dan503 commented 6 years ago

Did you know that you can import .css files into sass projects by just importing the file and leaving off the file extension?

So instead of this:

@import 'path/to/file.css';

Try this:

@import 'path/to/file';

It should magically work.