@bu0nq/scss.mixin.modifiers 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +17 -0
- package/.gitattributes +2 -0
- package/README.md +15 -0
- package/modifiers.scss +17 -0
- package/package.json +30 -0
- package/rounded/_rounded-base.scss +9 -0
- package/rounded/_rounded-lg.scss +9 -0
- package/rounded/_rounded-md.scss +9 -0
- package/rounded/_rounded-sm.scss +9 -0
- package/rounded/_rounded-xl.scss +9 -0
- package/rounded/_rounded-xs.scss +9 -0
- package/rounded/_rounded-xxl.scss +9 -0
- package/size/_size-base.scss +9 -0
- package/size/_size-lg.scss +9 -0
- package/size/_size-md.scss +9 -0
- package/size/_size-sm.scss +9 -0
- package/size/_size-xl.scss +9 -0
- package/size/_size-xs.scss +9 -0
- package/size/_size-xxl.scss +9 -0
package/.editorconfig
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
end_of_line = lf
|
|
5
|
+
indent_size = 4
|
|
6
|
+
indent_style = space
|
|
7
|
+
insert_final_newline = true
|
|
8
|
+
trim_trailing_whitespace = true
|
|
9
|
+
|
|
10
|
+
[*.json]
|
|
11
|
+
indent_size = 2
|
|
12
|
+
|
|
13
|
+
[*.scss]
|
|
14
|
+
indent_size = 2
|
|
15
|
+
|
|
16
|
+
[*.md]
|
|
17
|
+
trim_trailing_whitespace = false
|
package/.gitattributes
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SCSS.Mixin.Modifiers
|
|
2
|
+
|
|
3
|
+
Package for integrating `SCSS.Mixins.Modifiers` in a web environment.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+
___
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
This package can be deployed automatically using NPM:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
npm i @bu0nq/scss.mixin.modifiers
|
|
15
|
+
```
|
package/modifiers.scss
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Rounded
|
|
2
|
+
@forward "rounded/rounded-xs";
|
|
3
|
+
@forward "rounded/rounded-sm";
|
|
4
|
+
@forward "rounded/rounded-md";
|
|
5
|
+
@forward "rounded/rounded-base";
|
|
6
|
+
@forward "rounded/rounded-lg";
|
|
7
|
+
@forward "rounded/rounded-xl";
|
|
8
|
+
@forward "rounded/rounded-xxl";
|
|
9
|
+
|
|
10
|
+
// Size
|
|
11
|
+
@forward "size/size-xs";
|
|
12
|
+
@forward "size/size-sm";
|
|
13
|
+
@forward "size/size-md";
|
|
14
|
+
@forward "size/size-base";
|
|
15
|
+
@forward "size/size-lg";
|
|
16
|
+
@forward "size/size-xl";
|
|
17
|
+
@forward "size/size-xxl";
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bu0nq/scss.mixin.modifiers",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Package for integrating SCSS.Mixin.Modifiers",
|
|
5
|
+
"main": "modifiers.scss",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/bu0nq/scss.mixin.modifiers.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"scss",
|
|
15
|
+
"mixins",
|
|
16
|
+
"modifiers"
|
|
17
|
+
],
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "bu0nq",
|
|
20
|
+
"email": "hello@bu0nq.ru"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/bu0nq/scss.mixin.modifiers/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/bu0nq/scss.mixin.modifiers#readme",
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|