Skip to content

Commit

Permalink
fix: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RupaakSrinivas committed Jan 18, 2024
1 parent 7a5b701 commit a0684f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.
13 changes: 0 additions & 13 deletions src/pages/api/hello.ts

This file was deleted.

7 changes: 3 additions & 4 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: #D9D9D9;
--background-end-rgb: #D9D9D9;
--background-start-rgb: #d9d9d9;
--background-end-rgb: #d9d9d9;
}

body {
Expand All @@ -18,13 +18,12 @@ body {
rgb(var(--background-start-rgb));
}


::-webkit-scrollbar {
width: 5px;
}

::-webkit-scrollbar-track {
background-color: #D9D9D9;
background-color: #d9d9d9;
}

::-webkit-scrollbar-thumb {
Expand Down
6 changes: 3 additions & 3 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
},
}
},
plugins: [],
plugins: []
}
export default config

0 comments on commit a0684f0

Please sign in to comment.