From eccf7f6050ebab7254c0b8e51c06a130fa1cdd2e Mon Sep 17 00:00:00 2001 From: Schalk Neethling Date: Sun, 12 Jan 2025 20:36:00 +0200 Subject: [PATCH] bug: fix typo in typography class names --- package.json | 2 +- src/minimalist/atoms/typography.css | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 1d5d672..c0887dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-minimalist", - "version": "0.2.1", + "version": "0.2.3", "description": "A minimal pure CSS starter library for most web projects.", "type": "module", "exports": "./src/index.js", diff --git a/src/minimalist/atoms/typography.css b/src/minimalist/atoms/typography.css index 1d014ee..21514b7 100644 --- a/src/minimalist/atoms/typography.css +++ b/src/minimalist/atoms/typography.css @@ -3,7 +3,7 @@ .heading-xl, .heading-large, .heading-medium, -.heading-small-mediium, +.heading-small-medium, caption, h1, h2, @@ -27,31 +27,26 @@ body { } h1, -h1.heading-xxl, .heading-xxl { font-size: var(--typography-size-xxl); } h2, -h2.heading-xl, .heading-xl { font-size: var(--typography-size-xl); } h3, -h3.heading-large, .heading-large { font-size: var(--typography-size-large); } h4, -h4.heading-medium, .heading-medium { font-size: var(--typography-size-medium); } h5, -h5.heading-small-medium, .heading-small-medium { font-size: var(--typography-size-small-medium); }