Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To import a scss file within a scss class, you can use the @import rule. Here's an example:

.my-class {
  @import "path/to/stylesheet.scss";
  // styles for .my-class
}

In this example, we're importing a stylesheet called "stylesheet.scss" and including its styles within the .my-class selector. Note that the path to the stylesheet should be relative to the current stylesheet that is being compiled.