move to biomejs, this is before unsafe lint run
Some checks failed
Code quality checks / biome (push) Failing after 16s

This commit is contained in:
creations 2025-04-13 09:14:23 -04:00
parent f4237afc59
commit 25fcd99acf
Signed by: creations
GPG key ID: 8F553AA4320FC711
43 changed files with 353 additions and 565 deletions

View file

@ -31,7 +31,8 @@
@font-face {
font-family: Fira Code;
src: url("/public/assets/fonts/Fira_code/FiraCode-Regular.ttf") format("truetype");
src: url("/public/assets/fonts/Fira_code/FiraCode-Regular.ttf")
format("truetype");
font-weight: normal;
font-style: normal;
}
@ -52,14 +53,18 @@ body {
padding: 0 1rem;
}
input, button, textarea, select {
input,
button,
textarea,
select {
font-family: inherit;
font-size: 1rem;
border-radius: 4px;
transition: all 0.2s ease;
}
button, .button {
button,
.button {
cursor: pointer;
padding: 0.75rem 1.5rem;
border: none;
@ -70,11 +75,14 @@ button, .button {
transition: background-color 0.2s ease;
}
button:hover, .button:hover {
button:hover,
.button:hover {
background-color: var(--accent-hover);
}
input, textarea, select {
input,
textarea,
select {
padding: 0.75rem;
border: 1px solid var(--border);
background-color: var(--input-background);
@ -83,7 +91,9 @@ input, textarea, select {
box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px rgb(88 101 242 / 30%);