Skip to content

Commit

Permalink
Set url form & change text size
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed May 1, 2024
1 parent 0819a89 commit 4534214
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/react/components/PopupForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useTranslation } from "react-i18next";

const KEY = "2024-05-form";
const maxDate = new Date(2024, 6, 1);
const url = "http://google.com";
const url = "https://yew6s2omgul.typeform.com/to/xoeaKKeu";

export default function PopupForm() {
const { t } = useTranslation("survey");
Expand Down Expand Up @@ -38,11 +38,11 @@ export default function PopupForm() {
open={open}
>
<div className="bg-white">
<form className="bg-purple/10 border-2 max-w-screen-xs md:border-e-0 border-purple shadow-lg p-4">
<form className="bg-purple/10 border-2 max-w-screen-xs md:border-e-0 border-purple shadow-lg p-4 md:p-3">
<h1 className="text-lg font-bold text-purple font-serif mb-2">
{t("title")}
</h1>
<p>{t("body")}</p>
<p className="text-sm">{t("body")}</p>
<div className="flex flex-col md:flex-row justify-between md:justify-start gap-2 mt-4">
<button
type="button"
Expand Down

0 comments on commit 4534214

Please sign in to comment.