From b21bf5d1638a78b565eccaec5d5b744aa0ba67c2 Mon Sep 17 00:00:00 2001 From: Eric Tompkins Date: Tue, 5 Nov 2024 18:07:59 -0500 Subject: [PATCH 1/2] Build media file --- dist/media.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/media.css b/dist/media.css index 6c7a99fd..c3c6b58b 100644 --- a/dist/media.css +++ b/dist/media.css @@ -51,11 +51,14 @@ * - And our own usage in building websites * * Cacao is a mobile-first system. - * We don't use min-width or max-width because we follow Stylelint's media-feature-rante-notation rule. + * We don't use min-width or max-width because we follow Stylelint's media-feature-range-notation rule. * https://stylelint.io/user-guide/rules/media-feature-range-notation/ * * We use pixels instead of ems because that is the convention and it helps prevent a Safari bug with how they calculate ems (i.e. they use font-size + zoom level) * https://cgamesplay.com/post/2023/05/19/stop-using-em-in-media-queries/ + * + * https://www.joshwcomeau.com/css/surprising-truth-about-pixels-and-accessibility/ is another viewpoint on this and considers users increacing the default + * font size in their browser settings. Need to explore this more. 10/26/2024 */ /* 3xs */ From 1701b7b24f183f9c784ece28533cec6d33a6f3b0 Mon Sep 17 00:00:00 2001 From: Eric Tompkins Date: Tue, 5 Nov 2024 18:09:24 -0500 Subject: [PATCH 2/2] Updated version to 6.4.0 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e562ca48..497af4a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 6.4.0 (November 5, 2024) + +- Added `!important` to display styles. This was doen so that the display styles are always set and can’t be overwridden by more specific site styles. +- Added support for CSS selectors with psuedo-classes. + ## 6.3.0 (October 3, 2024) - Updated v6 conversion scripts. diff --git a/package.json b/package.json index 14a66154..392c685a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cacao-css", "description": "A set of composable CSS utilities that provide a solid foundation for website projects.", - "version": "6.3.0", + "version": "6.4.0", "author": "Aptuitiv, Inc ", "license": "MIT", "repository": {