3 Commits
1.1.0 ... 1.1.3

Author SHA1 Message Date
150bfd7278 Remove highlight with fix-focus
All checks were successful
Publish Library / Build NPM Project (push) Successful in 18s
Publish Library / Tag Version (push) Successful in 8s
Publish Library / Publish CDN & Docs (push) Successful in 29s
2024-12-06 18:56:34 -05:00
715d686171 updated anchor fix to include pointer cursor
All checks were successful
Publish Library / Build NPM Project (push) Successful in 12s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Successful in 19s
2024-11-29 20:44:22 -05:00
e98ed586f5 Fixed font-family inheritance
Some checks failed
Publish Library / Build NPM Project (push) Successful in 11s
Publish Library / Tag Version (push) Successful in 5s
Publish Library / Publish CDN & Docs (push) Failing after 14s
2024-11-23 21:59:09 -05:00
2 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@ztimson/css-utils", "name": "@ztimson/css-utils",
"version": "1.1.0", "version": "1.1.3",
"description": "CSS Utility Classes", "description": "CSS Utility Classes",
"readme": "README.md", "readme": "README.md",
"scripts": { "scripts": {

View File

@ -52,6 +52,7 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
color: var(--theme-primary); color: var(--theme-primary);
&:not(:hover) { text-decoration: none; } &:not(:hover) { text-decoration: none; }
&:hover { text-decoration: underline; } &:hover { text-decoration: underline; }
cursor: pointer;
} }
} }
@ -78,6 +79,7 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
.fix-focus, .fix:not(.no-focus-fix) { .fix-focus, .fix:not(.no-focus-fix) {
* { * {
outline: inherit; outline: inherit;
-webkit-tap-highlight-color: transparent;
} }
} }
@ -85,11 +87,6 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
color: var(--theme-text); color: var(--theme-text);
font-family: var(--theme-font), sans-serif; font-family: var(--theme-font), sans-serif;
* {
font-family: inherit;
font-size: inherit;
}
p, input, select, textarea, button { font-size: 1rem; } p, input, select, textarea, button { font-size: 1rem; }
h1, h2, h3, h4, h5, h6, p { margin: 0 0 0.5rem 0; } h1, h2, h3, h4, h5, h6, p { margin: 0 0 0.5rem 0; }
h1 { font-weight: 500; font-size: 2.5rem; } h1 { font-weight: 500; font-size: 2.5rem; }