This commit is contained in:
knugget
2023-03-03 16:21:37 +01:00
3 changed files with 2 additions and 6 deletions

View File

@@ -21,7 +21,6 @@ export default function LayoutAuth({ title = "Formbricks HQ", children }: Props)
<title>{title}</title>
</Head>
<div className="min-h-screen bg-slate-50">
{" "}
<div className="isolate bg-white">
<div className="bg-gradient-radial flex min-h-screen from-slate-200 to-slate-50">
<div className="mx-auto flex flex-1 flex-col justify-center px-4 py-12 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
@@ -29,7 +28,6 @@ export default function LayoutAuth({ title = "Formbricks HQ", children }: Props)
<div className="mb-8 text-center">
<Logo className="mx-auto w-3/4" />
</div>
{children}
</div>
</div>

View File

@@ -1,6 +1,6 @@
{
"name": "@formbricks/feedback",
"version": "0.3.1",
"version": "0.3.2",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",

View File

@@ -49,9 +49,6 @@ function init() {
document.querySelectorAll("[data-formbricks-button]").forEach((el) => {
el.addEventListener("click", open);
});
if (config.containerId) {
render();
}
}
window.addEventListener("load", init);
@@ -208,6 +205,7 @@ function clean() {
containerElement.remove();
containerElement.removeAttribute("data-feedback-type");
containerElement.removeAttribute("data-success");
trap.deactivate();
}
function resetForm() {