Skip to content

Commit 43edd30

Browse files
committed
client(Options.tsx): added a reset button that resets every input element
1 parent 5f031a7 commit 43edd30

File tree

12 files changed

+55
-37
lines changed

12 files changed

+55
-37
lines changed

client/build/asset-manifest.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.454e330b.css renamed to client/build/static/css/main.12122c50.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.454e330b.css.map renamed to client/build/static/css/main.12122c50.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.2277b9ca.js renamed to client/build/static/js/main.f7223845.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.2277b9ca.js.map renamed to client/build/static/js/main.f7223845.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "client",
33
"version": "0.1.0",
44
"private": true,
5+
"homepage": "https://github-readme-tech-stack.vercel.app/",
56
"dependencies": {
67
"@types/node": "^16.18.3",
78
"@types/react": "^18.0.25",

client/src/components/input/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Input: FC<InputProps> = (props) => {
3838
outline-none transition-all duration-150 ${
3939
isError
4040
? "border-red-500"
41-
: "focus:border-gh-blue-dark active:border-gh-blue-dark border-gh-border"
41+
: "focus:border-gh-blue active:border-gh-blue border-gh-border"
4242
}`}
4343
/>
4444

client/src/components/input/SelectInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const SelectInput: FC<SelectInputProps> = (props) => {
2828
onChange={(e) => props.setValue(e.target.value)}
2929
className="ml-auto text-base bg-gh-bg border border-solid border-gh-border
3030
rounded-md px-2 py-1 leading-none placeholder:text-gh-text-secondary text-gh-text
31-
outline-none focus:border-gh-blue-dark active:border-gh-blue-dark transition-all
31+
outline-none focus:border-gh-blue active:border-gh-blue transition-all
3232
duration-150 w-full"
3333
>
3434
{props.options.map((option, index) => {

0 commit comments

Comments
 (0)