cacao-css 3.13.0 → 3.14.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.14.0 (May 12, 2022)
4
+
5
+ - Removed the small screen font styles that cause the font to be smaller on small screens. This is no longer necessary with high resolution mobile phones.
6
+
7
+ ## 3.13.0 (December 17, 2021)
8
+
9
+ - Added smooth scrolling on the `<html>` tag by default.
10
+
11
+ ## 3.12.0 (December 3, 2021)
12
+
13
+ - Added vertical margin spacing utilities.
14
+ - Added full width/height utilities.
15
+
3
16
  ## 3.11.0 (Sept 21, 2021)
4
17
 
5
18
  - Updated .Button class to use `display: inline-flexbox` instead of `display: inline`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cacao-css",
3
3
  "description": "A set of composable CSS modules that provide a solid foundation for starting a new project.",
4
- "version": "3.13.0",
4
+ "version": "3.14.0",
5
5
  "main": "gulfile.js",
6
6
  "author": "Aptuitiv, Inc <hello@aptuitiv.com>",
7
7
  "license": "MIT",
@@ -74,16 +74,6 @@ html {
74
74
  font-size: 62.5%;
75
75
  }
76
76
 
77
- /**
78
- * Scale down text on small screens
79
- */
80
-
81
- @media (--c-bp-sm) {
82
- html {
83
- font-size: 56.25%;
84
- }
85
- }
86
-
87
77
  /**
88
78
  * Set body defaults for other elements to inherit
89
79
  */