Installs tachyons, but the SASS version with easy theming.
ember install ember-cli-tachyons-sass
Make sure you have ember-cli-sass installed and setup first.
Then import ember-cli-tachyons-sass
and over-ride any variables
for theming:
// Override any variables for theming: https://github.com/tachyons-css/tachyons-sass/blob/master/scss/_variables.scss
$font-size-headline: 9rem;
// Import ember-cli-tachyons-sass to your project
@import 'ember-cli-tachyons-sass';
This also means it's easy for us to add things to the *-ns
media-query space.
@media #{$breakpoint-not-small} {
// This will be red on all "not small" devices
.red-ns {
color: red;
}
}
Just make an issue and let's start a conversation!
git clone <repository-url>
cd ember-cli-tachyons-sass
npm install
npm run lint:js
npm run lint:js -- --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versions
ember serve
- Visit the dummy application at by running
ember o
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.