yummacss 0.1.1 → 0.2.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/CHANGELOG.md +14 -0
- package/package.json +32 -34
- package/yumma-css/_variables.scss +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -44,3 +44,17 @@ All notable changes to the Yumma CSS Library will be documented in this file.
|
|
|
44
44
|
|
|
45
45
|
### Deprecated
|
|
46
46
|
- None
|
|
47
|
+
|
|
48
|
+
## v0.2.0
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
- Added the `!default` flag to variables and maps in the _variables.scss file
|
|
52
|
+
|
|
53
|
+
### Changed
|
|
54
|
+
- None
|
|
55
|
+
|
|
56
|
+
### Fixed
|
|
57
|
+
- None
|
|
58
|
+
|
|
59
|
+
### Deprecated
|
|
60
|
+
- None
|
package/package.json
CHANGED
|
@@ -1,34 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "yummacss",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A CSS library for streamlined UI development.",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"style": "dist/yumma.css",
|
|
7
|
-
"author":
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"gulp": "^4.0.
|
|
27
|
-
"gulp-
|
|
28
|
-
"gulp-
|
|
29
|
-
"gulp-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "yummacss",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "A CSS library for streamlined UI development.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"style": "dist/yumma.css",
|
|
7
|
+
"author": "Renildo Pereira",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"customization",
|
|
10
|
+
"ux design",
|
|
11
|
+
"css"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://yummacss.netlify.app/",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/yumma-lib/yumma-css/issues"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "gulp buildStyles",
|
|
20
|
+
"minify": "gulp minifyStyles",
|
|
21
|
+
"watch": "gulp watchTask"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"gulp": "^4.0.2",
|
|
25
|
+
"gulp-clean-css": "^4.3.0",
|
|
26
|
+
"gulp-copy": "^4.0.1",
|
|
27
|
+
"gulp-purgecss": "^5.0.0",
|
|
28
|
+
"gulp-rename": "^2.0.0",
|
|
29
|
+
"gulp-sass": "^5.1.0",
|
|
30
|
+
"sass": "^1.62.1"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -13,39 +13,39 @@ $base-colors: (
|
|
|
13
13
|
"gray": #999999,
|
|
14
14
|
"black": black,
|
|
15
15
|
"white": white,
|
|
16
|
-
);
|
|
16
|
+
) !default;
|
|
17
17
|
|
|
18
18
|
// arragement
|
|
19
|
-
$base-columns: 1;
|
|
19
|
+
$base-columns: 1 !default;
|
|
20
20
|
|
|
21
21
|
// directions
|
|
22
|
-
$base-direction: 1px;
|
|
22
|
+
$base-direction: 1px !default;
|
|
23
23
|
|
|
24
24
|
// borders
|
|
25
|
-
$base-border-thickness: 1px;
|
|
26
|
-
$base-border: 1px;
|
|
27
|
-
$base-border-radius: 8px;
|
|
25
|
+
$base-border-thickness: 1px !default;
|
|
26
|
+
$base-border: 1px !default;
|
|
27
|
+
$base-border-radius: 8px !default;
|
|
28
28
|
|
|
29
29
|
// effect
|
|
30
|
-
$base-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
|
|
30
|
+
$base-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1) !default;
|
|
31
31
|
|
|
32
32
|
// typography
|
|
33
|
-
$base-font-size: 1rem;
|
|
34
|
-
$font-size-sm: $base-font-size * 0.75;
|
|
35
|
-
$font-size-md: $base-font-size * 1.75;
|
|
36
|
-
$font-size-lg: $base-font-size * 2;
|
|
37
|
-
$font-size-xlg: $base-font-size * 3;
|
|
33
|
+
$base-font-size: 1rem !default;
|
|
34
|
+
$font-size-sm: $base-font-size * 0.75 !default;
|
|
35
|
+
$font-size-md: $base-font-size * 1.75 !default;
|
|
36
|
+
$font-size-lg: $base-font-size * 2 !default;
|
|
37
|
+
$font-size-xlg: $base-font-size * 3 !default;
|
|
38
38
|
|
|
39
39
|
// grid
|
|
40
|
-
$base-column-gap: 0.25rem;
|
|
41
|
-
$base-row-gap: 0.25rem;
|
|
42
|
-
$base-template-columns: 0.25rem;
|
|
43
|
-
$base-template-rows: 0.25rem;
|
|
40
|
+
$base-column-gap: 0.25rem !default;
|
|
41
|
+
$base-row-gap: 0.25rem !default;
|
|
42
|
+
$base-template-columns: 0.25rem !default;
|
|
43
|
+
$base-template-rows: 0.25rem !default;
|
|
44
44
|
|
|
45
45
|
// size
|
|
46
|
-
$base-height: 0.25rem;
|
|
47
|
-
$base-width: 0.25rem;
|
|
46
|
+
$base-height: 0.25rem !default;
|
|
47
|
+
$base-width: 0.25rem !default;
|
|
48
48
|
|
|
49
49
|
// space
|
|
50
|
-
$base-padding: 0.75rem;
|
|
51
|
-
$base-margin: 0.75rem;
|
|
50
|
+
$base-padding: 0.75rem !default;
|
|
51
|
+
$base-margin: 0.75rem !default;
|