Use LESS to preprocess your ember-cli app CSS.
Questions tagged [ember-cli-less]
4 questions
3
votes
3 answers
Integrate SASS/SCSS on Ember Project with POD structure
I just want to ask what is the best approach to integrate sass/scss on ember project?
Currently my project is in pod structure and I just import style.scss on main app.scss under styles folder.
Is it fine or there is a better approach?
--- app
----…

chaelgutierrez
- 73
- 6
2
votes
0 answers
How can I change compiling rule less to css?
I have in my less file line like this:
.icon-enter {
width: 22px;
height: 18px;
background: url('data:image/svg+xml;...') no-repeat;
background-size: 100%;
}
But after it would be compiled I have result:
.icon-enter {
width: 22px;
…

Dmitro
- 1,489
- 4
- 22
- 40
2
votes
1 answer
Running the dummy app in an Ember addon project can't find app/styles/app.less
I'm trying to test an Ember addon project by running ember server inside an addon project. This runs the dummy app. However I am not getting my less files automatically being build with the ember-cli-less functionality (expecting…

Nikos
- 7,295
- 7
- 52
- 88
0
votes
1 answer
how to watch less styles in a pod structure using ember-cli
I'm facing an issue when moving my less files to a pod structure outside the styles folder.
I'm trying to put i.e:
pods/user/register/style.less
pods/components/app-login/styles
and import them from my styles/app.less file.
but so far it just…

Oscar Yañez
- 309
- 1
- 2
- 12