yummacss 1.0.1 → 1.0.3
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 +29 -0
- package/README.md +48 -43
- package/dist/yumma.css +154 -195
- package/dist/yumma.min.css +1 -0
- package/gulpfile.js +1 -1
- package/package.json +4 -2
- package/yumma-css/_base.scss +11 -4
- package/yumma-css/_colors.scss +2 -2
- package/yumma-css/_utilities.scss +0 -24
- package/public/css/yumma.min.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -115,5 +115,34 @@ All notable changes to the Yumma CSS Library will be documented in this file.
|
|
|
115
115
|
### Fixed
|
|
116
116
|
- Updated minify version.
|
|
117
117
|
|
|
118
|
+
### Deprecated
|
|
119
|
+
- None
|
|
120
|
+
|
|
121
|
+
## v1.0.2
|
|
122
|
+
|
|
123
|
+
### Added
|
|
124
|
+
- None
|
|
125
|
+
|
|
126
|
+
### Changed
|
|
127
|
+
- Small CSS resetting improvements.
|
|
128
|
+
|
|
129
|
+
### Fixed
|
|
130
|
+
- Fixed viewport classes from not working.
|
|
131
|
+
- Fixed caret color light and dark variations.
|
|
132
|
+
|
|
133
|
+
### Deprecated
|
|
134
|
+
- None
|
|
135
|
+
|
|
136
|
+
## v1.0.3
|
|
137
|
+
|
|
138
|
+
### Added
|
|
139
|
+
- None
|
|
140
|
+
|
|
141
|
+
### Changed
|
|
142
|
+
- Minified CSS file moved to the `/dist` folder.
|
|
143
|
+
|
|
144
|
+
### Fixed
|
|
145
|
+
- None
|
|
146
|
+
|
|
118
147
|
### Deprecated
|
|
119
148
|
- None
|
package/README.md
CHANGED
|
@@ -1,54 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
<img src="https://
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://yummacss.vercel.app/">
|
|
3
|
+
<img src="https://yummacss.vercel.app/img/yumma-css.png" width="64" alt="Yumma CSS Logo">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<h3 align="center">Yumma CSS</h3>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
Lightweight and streamlined CSS library that provides a set of tools to simplify web development.
|
|
11
|
+
<br>
|
|
12
|
+
<a href="https://yummacss.vercel.app/"><strong>Explore Yumma CSS Docs ↝</strong></a>
|
|
13
|
+
<br>
|
|
14
|
+
<br>
|
|
15
|
+
<a href="https://yummacss-editor.vercel.app/">Try Yumma CSS</a>
|
|
16
|
+
•
|
|
17
|
+
<a href="https://github.com/yumma-lib/yumma-css/issues">VS Code Extension</a>
|
|
18
|
+
•
|
|
19
|
+
<a href="https://yummacss.vercel.app/blog">Blog</a>
|
|
20
|
+
•
|
|
21
|
+
<a href="https://github.com/yumma-lib/yumma-css/issues">Issues</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<a href="https://www.npmjs.com/yummacss/yummacss">
|
|
26
|
+
<img src="https://img.shields.io/npm/v/yummacss.svg" alt="npm version">
|
|
27
|
+
</a>
|
|
28
|
+
<a href="https://www.npmjs.com/yummacss/yummacss">
|
|
29
|
+
<img src="https://img.shields.io/npm/dt/yummacss.svg" alt="Downloads">
|
|
30
|
+
</a>
|
|
31
|
+
<a href="https://opensource.org/licenses/MIT">
|
|
32
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License">
|
|
33
|
+
</a>
|
|
34
|
+
</p>
|
|
35
|
+
|
|
36
|
+
## Getting Started
|
|
37
|
+
|
|
38
|
+
You can use [npm](https://www.npmjs.com/yummacss/yummacss) to include the Yumma CSS in your project, or you can add it using [jsDelivr](https://www.jsdelivr.com/):
|
|
39
|
+
|
|
40
|
+
### cdn
|
|
13
41
|
```
|
|
14
|
-
|
|
15
|
-
### Install via NPM
|
|
42
|
+
<link href="https://cdn.jsdelivr.net/npm/yummacss/dist/yumma.min.css rel="stylesheet" crossorigin="anonymous">
|
|
16
43
|
```
|
|
17
|
-
npm install yummacss
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Version Display
|
|
21
|
-
To display the Yumma CSS version in your console, import the following code snippet and call the `showVer` function:
|
|
22
|
-
|
|
23
|
-
```js
|
|
24
|
-
const packageJson = require('./package.json');
|
|
25
44
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
module.exports = { showVer };
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### How to use
|
|
35
|
-
To display the Yumma CSS version in your console, just call the `showVer` function in your project code:
|
|
36
|
-
|
|
37
|
-
```js
|
|
38
|
-
const { showVer } = require('./index');
|
|
45
|
+
### npm
|
|
46
|
+
```bash
|
|
47
|
+
npm install yummacss
|
|
39
48
|
```
|
|
40
49
|
|
|
41
|
-
##
|
|
42
|
-
For comprehensive documentation, visit the [Yumma CSS Docs](https://yummacss.vercel.app/).
|
|
43
|
-
|
|
44
|
-
## License
|
|
45
|
-
Yumma CSS is open-source software licensed under the MIT License.
|
|
46
|
-
|
|
47
|
-
## Support
|
|
50
|
+
## Community
|
|
48
51
|
|
|
49
52
|
If you have questions or want to stay updated on our projects, here are some ways to connect with us:
|
|
50
53
|
|
|
51
54
|
- Join our [Discord](https://discord.gg/CGw5vyqmQ6) server.
|
|
52
55
|
- Follow us on [Twitter](https://twitter.com/yummacss) for the latest updates.
|
|
53
56
|
|
|
54
|
-
|
|
57
|
+
## Contributing
|
|
58
|
+
|
|
59
|
+
If you'd like to show your support for our work, [you can buy me a coffee](https://www.buymeacoffee.com/rrenildoo).
|