chore: select focus state

This commit is contained in:
Cory Dransfeldt 2024-07-05 10:32:24 -07:00
parent 693f4be812
commit 5f39a2b367
No known key found for this signature in database
3 changed files with 9 additions and 3 deletions
package-lock.jsonpackage.json
src/assets/styles/components

4
package-lock.json generated
View file

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

View file

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

View file

@ -33,6 +33,12 @@ select {
color: var(--text-color);
background-color: var(--background-color);
padding: var(--sizing-xs) var(--sizing-sm);
&:focus,
&:focus-within {
border: 0;
outline: var(--outline)
}
}
.search__form {