From 049d3f8a49dad7c2884afaf66f57ff48ea33e68c Mon Sep 17 00:00:00 2001 From: ztimson Date: Thu, 12 Dec 2024 23:33:54 -0500 Subject: [PATCH] fixed scss warning --- package.json | 2 +- src/main.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f95be6d..1c7ec66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ztimson/css-utils", - "version": "1.1.4", + "version": "1.1.5", "description": "CSS Utility Classes", "readme": "README.md", "scripts": { diff --git a/src/main.scss b/src/main.scss index fff4909..96784f8 100644 --- a/src/main.scss +++ b/src/main.scss @@ -49,10 +49,10 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100); .fix-anchor, .fix:not(.no-anchor-fix) { a, a:not([href]) { + cursor: pointer; color: var(--theme-primary); &:not(:hover):not(:focus) { text-decoration: none; } &:hover, &:focus { text-decoration: underline; } - cursor: pointer; } }