fix: artist svgs

This commit is contained in:
Cory Dransfeldt 2024-07-02 18:43:22 -07:00
parent 9eacc4e1a1
commit e6c960b3dc
No known key found for this signature in database
3 changed files with 16 additions and 4 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.9.8", "version": "19.9.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.9.8", "version": "19.9.9",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.9.8", "version": "19.9.9",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -41,12 +41,24 @@
width: var(--sizing-svg-sm); width: var(--sizing-svg-sm);
height: var(--sizing-svg-sm); height: var(--sizing-svg-sm);
margin-right: var(--sizing-xs); margin-right: var(--sizing-xs);
stroke: var(--favorite);
} }
} }
&.favorite { &.favorite {
color: var(--favorite); color: var(--favorite);
& svg {
stroke: var(--favorite);
}
}
&.brain:focus,
&.brain:focus-within {
outline: 0;
& svg {
outline: var(--outline);
}
} }
} }
} }