fix(*.css): remove font-weight transition; adjust animation speed

This commit is contained in:
Cory Dransfeldt 2025-04-14 14:30:00 -07:00
parent 321b6d2fca
commit d83a804ab4
No known key found for this signature in database
4 changed files with 4 additions and 9 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.7.7", "version": "1.7.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.7.7", "version": "1.7.8",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"html-minifier-terser": "7.2.0", "html-minifier-terser": "7.2.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "1.7.7", "version": "1.7.8",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {

View file

@ -154,7 +154,7 @@
/* transitions */ /* transitions */
--transition-ease-in-out: cubic-bezier(.4, 0, .2, 1); --transition-ease-in-out: cubic-bezier(.4, 0, .2, 1);
--transition-duration-default: 250ms; --transition-duration-default: 300ms;
/* transforms */ /* transforms */
--transform-icon-default: rotate(0); --transform-icon-default: rotate(0);

View file

@ -52,11 +52,6 @@ label svg {
summary { summary {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
transition: font-weight var(--transition-duration-default) var(--transition-ease-in-out);
}
details[open] summary {
font-weight: var(--font-weight-light);
} }
.search__form--type { .search__form--type {