mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-03 19:21:51 +02:00
✨ Show participated polls on polls page + UI refresh (#1089)
This commit is contained in:
parent
bd9e9fe95b
commit
f8a217ae75
125 changed files with 3007 additions and 2363 deletions
|
@ -2,7 +2,11 @@ const colors = require("tailwindcss/colors");
|
|||
const defaultTheme = require("tailwindcss/defaultTheme");
|
||||
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{ts,tsx}", "../../packages/ui/**/*.{ts,tsx}"],
|
||||
content: [
|
||||
"./src/**/*.{ts,tsx}",
|
||||
"../../packages/ui/**/*.{ts,tsx}",
|
||||
"../../packages/tailwind-config/tailwind.config.js",
|
||||
],
|
||||
plugins: [
|
||||
require("@tailwindcss/typography"),
|
||||
require("tailwindcss-animate"),
|
||||
|
@ -17,7 +21,7 @@ module.exports = {
|
|||
primary: {
|
||||
...colors.indigo,
|
||||
DEFAULT: colors.indigo["600"],
|
||||
foreground: colors.white,
|
||||
foreground: colors.indigo["50"],
|
||||
background: colors.indigo["50"],
|
||||
},
|
||||
secondary: {
|
||||
|
@ -91,6 +95,10 @@ module.exports = {
|
|||
fontFamily: {
|
||||
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
|
||||
},
|
||||
gap: {
|
||||
DEFAULT: "0.625rem",
|
||||
md: "0.625rem",
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue