diff --git a/index.html b/index.html index d0e4316..a800397 100644 --- a/index.html +++ b/index.html @@ -589,12 +589,12 @@ $sizes: ('auto': auto, 0: 0, 1: 0.25rem, 2: 0.5rem, 3: 1rem, 4: 1.5rem, 5: 2.5re

Font Style

Decoration

-
.fs-[italic|line-through|none|underline]
+
.fs-[italic|none|strike|underline]


.fs-italic - .fs-line-through .fs-none + .fs-strike .fs-underline

diff --git a/package-lock.json b/package-lock.json index 60008f9..99dd210 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ztimson/css-utils", - "version": "1.0.5", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ztimson/css-utils", - "version": "1.0.5", + "version": "1.2.0", "license": "MIT", "devDependencies": { "sass": "^1.80.6" diff --git a/package.json b/package.json index 1c7ec66..ef97472 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ztimson/css-utils", - "version": "1.1.5", + "version": "1.2.0", "description": "CSS Utility Classes", "readme": "README.md", "scripts": { diff --git a/src/main.scss b/src/main.scss index 96784f8..52734bd 100644 --- a/src/main.scss +++ b/src/main.scss @@ -193,8 +193,8 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100); .fs-italic { font-style: italic !important; } .fs-none { font-style: normal !important; } .fs-lighter { font-weight: lighter !important; } -.fs-line-through { text-decoration: line-through !important; } .fs-no-dec { text-decoration: none !important; } +.fs-strike { text-decoration: line-through !important; } .fs-underline { text-decoration: underline !important; } .fs-7 { font-size: 2.5rem !important; } .fs-6 { font-size: 2.25rem !important; }