Skip to content

Commit

Permalink
feat: #41 - resolving conflicting files
Browse files Browse the repository at this point in the history
  • Loading branch information
devasMartins-Tmd committed Jul 22, 2024
1 parent a8fd63a commit cb644cc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
11 changes: 11 additions & 0 deletions app/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,14 @@
@apply absolute left-10 top-20 -rotate-6;
}
}

#shadxs {
box-shadow: 0 0 1px rgba(77, 77, 77, 0.5);
}

#shadsm {
box-shadow: 0 0 3px rgba(77, 77, 77, 0.5);
}
#shadlg {
box-shadow: 0 0 6px rgba(77, 77, 77, 0.5);
}
9 changes: 8 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import type { Config } from "tailwindcss";





const config = {
darkMode: ["class"],
content: [
Expand Down Expand Up @@ -57,6 +61,9 @@ const config = {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
shadxs: "0 1px rgba(77, 77, 77, 0.5)",
shadsm: "0 0 3px rgba(77, 77, 77, 0.5)",
shadlg: "0 0 6px rgba(77, 77, 77, 0.5)",
},
keyframes: {
"accordion-down": {
Expand All @@ -78,4 +85,4 @@ const config = {
plugins: [require("tailwindcss-animate")],
} satisfies Config;

export default config;
export default config;

0 comments on commit cb644cc

Please sign in to comment.