diff --git a/src/components/home/hero.tsx b/src/components/home/hero.tsx index b063487b0..0a76e1484 100644 --- a/src/components/home/hero.tsx +++ b/src/components/home/hero.tsx @@ -40,7 +40,7 @@ const Hero: React.VoidFunctionComponent = () => { -
+
{ { return (
-
+
{ ref={ref} >
-
+
{timeZone ? (
@@ -207,7 +207,7 @@ const Poll: React.VoidFunctionComponent = () => { transition={{ duration: 0.2 }} initial={{ opacity: 0, height: 0 }} animate={{ opacity: 1, height: 55, y: 0 }} - className="border-t bg-slate-100 bg-opacity-0" + className="border-t border-b bg-gray-50" onSubmit={async ({ name, votes }) => { await addParticipant.mutateAsync({ name, diff --git a/tailwind.config.js b/tailwind.config.js index 8fbf7fda8..eea3e3c11 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,6 +5,9 @@ module.exports = { content: ["./src/pages/**/*.{ts,tsx}", "./src/components/**/*.{ts,tsx}"], theme: { extend: { + boxShadow: { + huge: "0px 51px 78px rgb(17 7 53 / 5%), 0px 21.3066px 35.4944px rgb(17 7 53 / 4%), 0px 11.3915px 18.9418px rgb(17 7 53 / 3%), 0px 6.38599px 9.8801px rgb(17 7 53 / 3%), 0px 3.39155px 4.58665px rgb(17 7 53 / 2%), 0px 1.4113px 1.55262px rgb(17 7 53 / 1%), inset 0px 1px 0px rgb(41 56 78 / 5%)", + }, colors: { primary: colors.indigo, },