Skip to content

Commit

Permalink
bug: fix typo in typography class names
Browse files Browse the repository at this point in the history
  • Loading branch information
Schalk Neethling authored and Schalk Neethling committed Jan 12, 2025
1 parent 0e742a9 commit eccf7f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 1 addition & 6 deletions src/minimalist/atoms/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.heading-xl,
.heading-large,
.heading-medium,
.heading-small-mediium,
.heading-small-medium,
caption,
h1,
h2,
Expand All @@ -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);
}
Expand Down

0 comments on commit eccf7f6

Please sign in to comment.