scss-lint Questions
6
How can I Include .scss file in another .scss file?
I was trying to write this in a file:
app.scss:
@include('buttons');
@include('dropzone');
body {
background: $primaryColor;
overflow-x: hid...
6
I use browserify to transform my code now getting error while the sass files were getting imported
@import parse error
Can any one help me to sort this issue how to use and integrate
2
I'm learning SCSS following a freecodecamp tutorial, but I keep getting the following error on the CLI for live sass: watch:
Error: Undefined mixin.
╷
320 │ @include _assert-ascending($grid-breakp...
Milliemillieme asked 19/7, 2021 at 20:19
2
Solved
I am new to SCSS and have just started a new project, as you can see below I have declared 4 variables in Global.scss but after import it to another scss file, I was unable to get any auto-suggesti...
Biophysics asked 16/8, 2020 at 1:49
3
Solved
styles.scss
@import 'packages/bulma.sass';
bulma.sass
@charset "utf-8"
/*! bulma.io v0.6.1 | MIT License | github.com/jgthms/bulma */
@import "sass/utilities/_all"
@import "sass/base/_all"
@impo...
4
Is there a way to have an image as background on IONIC4? I can't find anywhere on the documentation and any CSS class I apply doesn't work. There is a host property that always takes over the backg...
Circassian asked 7/12, 2018 at 16:21
2
I want to convert some files from *.scss extension to *.css one and then copy them to the target folder .
These files aren't a part of a module so I can't import them by the *.scss loader (i.e im...
Filamentary asked 29/7, 2017 at 23:58
2
Solved
Angular 2+ with scss and ::ng-deep in WebStorm highlights this selector with text "Unknown pseudo selector 'ng-deep'"
I tried something like:
selector-pseudo-class-no-unknown: true
ignorePseudoC...
Bestialize asked 3/8, 2017 at 19:1
2
Solved
I use the scss-lint gem and just reordered and nested all my scss files to dissolve the complaints of the linter.
It's a lot of tedious work that should be automated but after searching quite a wh...
2
Solved
I downloaded a free HTML theme named dashgum from the internet. I'm implementing it for an Angular2 application using angular-cli. I converted the css files to .scss and pasted the code to the angu...
1
ng serve compiles my app, but when I'm inspecting the html, the source of the CSS seems to be (style)...(/style).
Does anybody knows how to configure sass source map via Angular-CLI ?
Washedup asked 23/1, 2017 at 13:53
1
Solved
I'm using gem scss_lint for scss linting. The issue I'm having is that I have variables in some of my strings in the css for the url so the linter reports an error:
I think there should be a way t...
Dextrous asked 13/3, 2017 at 13:55
1
Solved
I am trying to create a function that simply enables me to output the key name and key value of a simple two-dimensional map in CSS:
$people: (
"Hellen": (
age: "34",
sex: "female"
),
"Patric...
1
© 2022 - 2024 — McMap. All rights reserved.