tangled
alpha
login
or
join now
mary.my.id
/
anartia
9
fork
atom
JavaScript-optional public web frontend for Bluesky
anartia.kelinci.net
sveltekit
atcute
bluesky
typescript
svelte
9
fork
atom
overview
issues
pulls
pipelines
refactor: only set outline-style on focus
mary.my.id
1 year ago
3d658a69
659da3c6
verified
This commit was signed with the committer's
known signature
.
mary.my.id
SSH Key Fingerprint:
SHA256:ZlTP/auFSGpGnaoDg4mCTG1g9OZvXp62jWR4c6H4O3c=
+3
-1
1 changed file
expand all
collapse all
unified
split
src
lib
styles
app.css
+3
-1
src/lib/styles/app.css
···
45
45
:where(*, *::before, *::after) {
46
46
box-sizing: border-box;
47
47
margin: 0;
48
48
+
outline-color: var(--accent);
49
49
+
outline-width: 2px;
48
50
padding: 0;
49
51
50
52
&:focus-visible {
51
51
-
outline: 2px solid var(--accent);
53
53
+
outline-style: solid;
52
54
}
53
55
}
54
56