-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
52 lines (40 loc) · 1.58 KB
/
index.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@charset "UTF-8";
// @description
// * This file forwards modules related to the base, utilities, abstracts,
// * functions, mixins, helpers, and development utilities.
// @author Khaled Mohamed
// @license MIT
// @repository: https://github.com/Black-Axis/sass-pire
// @library sass-pire
// @version 4.0.0
// * forwarding the "abstract" module.
// * The "abstract" module may contain abstract styles or variables used
// * throughout the project.
// @see abstract
@forward "./src/abstract";
// * forwarding the "functions" module.
// * The "functions" module likely contains custom Sass functions for use
// * in stylesheets.
// @see functions
@forward "./src/functions";
// * forwarding the "mixins" module.
// * The "mixins" module probably contains reusable Sass mixins.
// @see mixins
@forward "./src/mixins";
// * forwarding the "helpers" module.
// * The "helpers" module may contain helper classes or functions for
// * simplifying styles.
// @see helpers
@forward "./src/helpers";
// * forwarding the "development-utils" module.
// * The "development-utils" module might contain utilities helpful
// * during development.
// @see development-utils
@forward "./src/development-utils";
// * There is a utility module for the sass-pire library
// * We need to import it to use the sass-pire library
// * But we don't want to import it in the sass-pire.scss file
// * because it will be rendered when import the sass-pire.scss file
// * You can use the following command to import the sass-pire utility module
// * @use "sass-pire/utils";
// * You can also import it to use in CSS layers easily.