Skip to content

Commit

Permalink
Merge branch 'main' into edit-share
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishab87 authored Jan 7, 2025
2 parents 1e70092 + 75682a0 commit d0ae719
Show file tree
Hide file tree
Showing 24 changed files with 713 additions and 293 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions frontend/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"plugins": ["prettier-plugin-tailwindcss"]
}
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"plugins": ["prettier-plugin-tailwindcss"]
}
1 change: 1 addition & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri + React + Typescript</title>

</head>

<body>
Expand Down
113 changes: 104 additions & 9 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
"ldrs": "^1.0.2",
"lucide-react": "^0.400.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-image-crop": "^11.0.7",
"react-icons": "^5.4.0",
Expand Down
6 changes: 3 additions & 3 deletions frontend/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const postcssConfig = {
const postcssConfig = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
export default postcssConfig
};
export default postcssConfig;
56 changes: 27 additions & 29 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
@tailwind components;
@tailwind utilities;

@layer base {
:root {
--background: 0 0% 100%;
--foreground: 0 0% 0%;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 0 0% 0%;

--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
Expand All @@ -32,39 +32,38 @@
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;

--radius: 0.5rem;
}
--radius: 0.5rem;
}

.dark {
--background: 221, 39%, 11%;
--foreground: 0 0% 100%;
.dark {
--background: 221, 39%, 11%;
--foreground: 0 0% 100%;

--card: 222.2 84% 4.9%;
--card-foreground: 210 40% 98%;
--card: 222.2 84% 4.9%;
--card-foreground: 210 40% 98%;

--popover: 222.2 84% 4.9%;
--popover-foreground: 210 40% 98%;
--popover: 222.2 84% 4.9%;
--popover-foreground: 210 40% 98%;

--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 11.2%;
--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 11.2%;

--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;
--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;

--muted: 217.2 32.6% 17.5%;
--muted-foreground: 215 20.2% 65.1%;
--muted: 217.2 32.6% 17.5%;
--muted-foreground: 215 20.2% 65.1%;

--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;
--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;

--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;

--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 212.7 26.8% 83.9%;
}

--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 212.7 26.8% 83.9%;
}
}

@layer base {
Expand All @@ -83,4 +82,3 @@
-ms-overflow-style: none;
scrollbar-width: none;
}

Loading

0 comments on commit d0ae719

Please sign in to comment.