fix: book outline + focus state

This commit is contained in:
Cory Dransfeldt 2024-08-22 18:03:34 -07:00
parent 4e49d0faae
commit 40ad47aacb
No known key found for this signature in database
3 changed files with 13 additions and 4 deletions

4
package-lock.json generated
View file

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

View file

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

View file

@ -13,6 +13,11 @@
}
}
& a:has(img) {
display: flex;
}
& img {
max-width: calc(var(--sizing-3xl) * 4);
height: auto;
@ -22,8 +27,12 @@
transition-duration: 300ms;
}
& a:hover img,
& a:focus img,
& a:focus-within img {
border: 0
}
& a:hover img,
& a:active img {
border-color: var(--accent-color-hover)
}