Skip to content

Commit

Permalink
fix: Resolve build warnings and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lokeshwar777 committed May 19, 2024
1 parent 841ad01 commit ffa319f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

# production
/build
/dist

#config
# src/config/index.js
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"husky": "^8.0.0",
"less": "^4.1.3",
"lint-staged": "^14.0.0",
"vite": "^4.0.0",
"vite": "^5.2.11",
"webpack": "^4.46.0"
},
"husky": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui-helpers/Inputs/PrimaryInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Input = styled(InputBase)(({ theme }) => ({
position: "relative",
backgroundColor: theme.palette.mode === "light" ? "#fcfcfb" : "#fff",
border: "1px solid #ced4da",
borderRadius: 6,
// borderRadius: 6,
fontSize: 16,
width: "100%",
padding: "10px 12px",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui-helpers/Inputs/SecondaryInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Input = styled(InputBase)(({ theme }) => ({
position: "relative",
backgroundColor: theme.palette.mode === "light" ? "#fcfcfb" : "#F9F9F9",
border: "1px solid #ced4da",
borderRadius: 6,
// borderRadius: 6,
fontSize: 16,
width: "100%",
padding: "10px 12px",
Expand Down
4 changes: 2 additions & 2 deletions src/css/firepad.css
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ a.firepad-btn:active {
background-color: #ffffff;
border: 1px solid #ccc;
/* border: 1px solid rgba(0, 0, 0, 0.2); */
*border-right-width: 2px;
*border-bottom-width: 2px;
/* *border-right-width: 2px; */
/* *border-bottom-width: 2px; */
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 2px;
Expand Down

0 comments on commit ffa319f

Please sign in to comment.