-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Fix header logo position #380
Conversation
logo position was wonky between 30em and 40em screen sizes
Thanks! And yeah, I guess the outputted CSS could be omitted from source control. Which SASS package would you recommend? This one? https://github.com/particle4dev/meteor-sass/ |
To be honest, I've never used Sass in a Meteor project, so I don't know. :/ |
Thanks, let's see what kind of replies you get :) |
Only got one reply so far, but it looks like the package Julian Ćwirko suggested has the most downloads and activity on Atmosphere/GitHub: I might take a stab at integrating it into Telescope, but I have a feeling there will be issues. I'll let you know how it goes... Off the top of your head, do you know if you make use of |
Extend maybe yes, but not the other ones. Now I do remember that this was On Thu, Sep 11, 2014 at 1:58 PM, Ben Gott notifications@github.com wrote:
|
Oh well. There are worse problems to have, I guess. I suppose that if someone makes big CSS changes and doesn't use CodeKit, they could use another compiler and just commit everything (scss and css files). Then you could regenerate and replace the css files before you merge in the changes. This probably doesn't happen very often, so no big deal. I wouldn't recommend removing the generated css files from source control unless they can be automatically generated by the build process, though. Without the css files, users would have to generate them as a separate step before running the app, which might involve installing Ruby, etc. |
I agree. I would be happy to use libsass if it works though, as always PRs are welcome :) |
logo position was wonky between 30em and 40em screen widths -- noticed it on my phone in landscape orientation
Here's what it looks like on crater.io (where I also submitted a PR)
Also, it seems kind of weird to have the source scss files and the resulting CodeKit-generated css files all in source control. I guess there weren't any good Sass packages for Meteor back when Sacha first wrote Telescope? Since this was such a small change, I just manually edited both the source _header.scss and resulting screen.css files. I don't have CodeKit (running Linux here), and I didn't want to regenerate the css with a different Sass preprocessor and introduce a bunch of trivial changes.
Cheers!
Ben