Adding more to registration

This commit is contained in:
Mitchell Magro 2025-10-25 11:42:30 +02:00
parent 585029e082
commit 483f2656da
3 changed files with 13 additions and 3 deletions

View File

@ -1 +1 @@
npm test npx lint-staged

View File

@ -86,10 +86,12 @@
flex: 1 1 100%; flex: 1 1 100%;
min-width: 200px; min-width: 200px;
display: flex; display: flex;
flex-direction: column; flex-direction: row;
gap: 4px; gap: 8px;
.country-code-select { .country-code-select {
flex: 0 0 auto;
width: 120px;
padding: 8px; padding: 8px;
font-size: 0.9rem; font-size: 0.9rem;
border-radius: 4px; border-radius: 4px;

View File

@ -63,5 +63,13 @@
"workerDirectory": [ "workerDirectory": [
"public" "public"
] ]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --write"
],
"*.{json,css,scss,md}": [
"npx prettier --write"
]
} }
} }