style: add focus visible to input and textarea

This commit is contained in:
Miodec 2023-09-19 14:12:48 +01:00
parent dd53122e0d
commit 5adee78cb8

View file

@ -10,6 +10,9 @@ textarea {
font-family: var(--font);
caret-color: var(--main-color);
line-height: 1.25em;
&:focus-visible {
box-shadow: 0 0 0 0.15em var(--text-color);
}
}
textarea {
@ -53,6 +56,9 @@ input[type="range"] {
cursor: grabbing;
}
}
&:focus-visible {
box-shadow: 0 0 0 0.15em var(--text-color);
}
}
input[type="color"] {