yummacss 1.1.0 → 1.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 +38 -1
- package/README.md +8 -9
- package/dist/yumma.css +13643 -6408
- package/dist/yumma.min.css +1 -1
- package/gulpfile.js +8 -8
- package/package.json +9 -11
- package/yumma-css/_base.scss +41 -22
- package/yumma-css/_colors.scss +1 -3
- package/yumma-css/_fonts.scss +8 -8
- package/yumma-css/_layout.scss +1 -1
- package/yumma-css/_utils.scss +414 -356
- package/yumma-css/_variables.scss +76 -54
- package/yumma-css/components/_badge.scss +5 -5
- package/yumma-css/components/_button.scss +6 -17
- package/yumma-css/components/_card.scss +9 -9
- package/yumma-css/components/_navbar.scss +2 -4
- package/yumma-css/index.scss +1 -2
- package/yumma-css/_functions.scss +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -167,4 +167,41 @@ All notable changes to the Yumma CSS Library will be documented in this file.
|
|
|
167
167
|
- Fixed caret color variants.
|
|
168
168
|
|
|
169
169
|
### Deprecated
|
|
170
|
-
- None
|
|
170
|
+
- None
|
|
171
|
+
|
|
172
|
+
## v1.2.0
|
|
173
|
+
|
|
174
|
+
### Added
|
|
175
|
+
- Added `fit-content` to **Height** and **Width** classes.
|
|
176
|
+
- Added **Max Dimension** and **Min Dimension** classes.
|
|
177
|
+
- Added `auto`, `full`, and `half` value to the **Flex** classes.
|
|
178
|
+
- Added Indigo color to the color palette.
|
|
179
|
+
- Added `transparent` to the color palette.
|
|
180
|
+
- Added `none` property to **Box Shadow** class.
|
|
181
|
+
- Added `.max-dim-{}` and `.min-dim-{}` classes.
|
|
182
|
+
- Added responsive media queries to `.dim-{}`,`.max-dim-{}` and `.min-dim-{}` classes.
|
|
183
|
+
- Added **Line Height** classes.
|
|
184
|
+
- The `.btn{}` component is now smaller by default.
|
|
185
|
+
- Improvements to the `_base.scss` partial file.
|
|
186
|
+
- Improvements in the **Direction** classes.
|
|
187
|
+
- Improvements to **Grid Template Columns** classes.
|
|
188
|
+
- Improvements to **Grid Template Rows** classes.
|
|
189
|
+
- Improvements to the **Flex Shrin**k clasess.
|
|
190
|
+
- Improvements to the **Font Sizes** classes.
|
|
191
|
+
- Improvements to the **Flex** classes.
|
|
192
|
+
- Color palette redesign.
|
|
193
|
+
|
|
194
|
+
### Changed
|
|
195
|
+
- Viewports units are not dynamic.
|
|
196
|
+
- Removed default shadow in the `.nav{}` component.
|
|
197
|
+
- **Border Radius** default value is now 4px instead of 8px.
|
|
198
|
+
- Removed `.bs{}` class from **Box Shadow**.
|
|
199
|
+
|
|
200
|
+
### Fixed
|
|
201
|
+
- None
|
|
202
|
+
|
|
203
|
+
### Deprecated
|
|
204
|
+
- Removed complement button component.
|
|
205
|
+
- Removed the `!default` flag from all variables.
|
|
206
|
+
- Magenta color is deprecated.
|
|
207
|
+
- The `showVer()` function is no longer available.
|
package/README.md
CHANGED
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<
|
|
3
|
-
<img src="https://yummacss.vercel.app/img/yumma-css.png" width="64" alt="Yumma CSS Logo">
|
|
4
|
-
</a>
|
|
2
|
+
<img src="https://yummacss.com/img/yummacss.png" width="64" alt="Yumma CSS Logo">
|
|
5
3
|
</p>
|
|
6
4
|
|
|
7
5
|
<h3 align="center">Yumma CSS</h3>
|
|
8
6
|
|
|
9
7
|
<p align="center">
|
|
10
|
-
|
|
8
|
+
Build beautiful websites with small class names
|
|
11
9
|
<br>
|
|
12
|
-
<a href="https://yummacss.
|
|
10
|
+
<a href="https://yummacss.com"><strong>Explore Yumma CSS Docs ↝</strong></a>
|
|
13
11
|
<br>
|
|
14
12
|
<br>
|
|
15
|
-
<a href="https://yummacss
|
|
13
|
+
<a href="https://yummacss.com/playground">Try Yumma CSS</a>
|
|
16
14
|
•
|
|
17
|
-
<a href="https://
|
|
15
|
+
<a href="https://yummacss.com/blog/introducing-yummacss-intelephense">Our Extension</a>
|
|
18
16
|
•
|
|
19
|
-
<a href="https://yummacss.
|
|
17
|
+
<a href="https://yummacss.com/blog">Blog</a>
|
|
20
18
|
•
|
|
21
19
|
<a href="https://github.com/yumma-lib/yumma-css/issues">Issues</a>
|
|
22
20
|
</p>
|
|
@@ -43,7 +41,7 @@ You can use [npm](https://www.npmjs.com/yummacss) to include the Yumma CSS in yo
|
|
|
43
41
|
```
|
|
44
42
|
|
|
45
43
|
### npm
|
|
46
|
-
```
|
|
44
|
+
```
|
|
47
45
|
npm install yummacss
|
|
48
46
|
```
|
|
49
47
|
|
|
@@ -51,6 +49,7 @@ npm install yummacss
|
|
|
51
49
|
|
|
52
50
|
If you have questions or want to stay updated on our projects, here are some ways to connect with us:
|
|
53
51
|
|
|
52
|
+
- Subscribe to our [YouTube](https://www.youtube.com/@rrenildopereiraa/videos) channel.
|
|
54
53
|
- Join our [Discord](https://discord.gg/CGw5vyqmQ6) server.
|
|
55
54
|
- Follow us on [Twitter](https://twitter.com/yummacss) for the latest updates.
|
|
56
55
|
|