mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-19 11:11:05 -05:00
fix typo in PMF widget styling
This commit is contained in:
@@ -133,8 +133,7 @@ Here are all variables you can set with the current defaults:
|
||||
style: {
|
||||
brandColor: "#00c4b8",
|
||||
borderRadius: "0.4rem",
|
||||
containerBGColor: "#f8fafc",
|
||||
containerBGColor: "#f8fafc",
|
||||
containerBgColor: "#f8fafc",
|
||||
textColor: "#0f172a",
|
||||
buttonTextColor: "#ffffff",
|
||||
textareaBorderColor: "#e2e8f0",
|
||||
@@ -160,8 +159,7 @@ window.formbricksPmf = {
|
||||
style: {
|
||||
brandColor: "#00c4b8",
|
||||
borderRadius: "0.4rem",
|
||||
containerBGColor: "#f8fafc",
|
||||
containerBGColor: "#f8fafc",
|
||||
containerBgColor: "#f8fafc",
|
||||
textColor: "#0f172a",
|
||||
buttonTextColor: "#ffffff",
|
||||
textareaBorderColor: "#e2e8f0",
|
||||
|
||||
@@ -87,7 +87,7 @@ function applyConfig() {
|
||||
if (config.style.borderRadius) {
|
||||
root.style.setProperty("--formbricksPmf-border-radius", config.style.borderRadius);
|
||||
}
|
||||
if (config.style.containerBGColor) {
|
||||
if (config.style.containerBgColor) {
|
||||
root.style.setProperty("--formbricksPmf-bg-color", config.style.containerBgColor);
|
||||
}
|
||||
if (config.style.textColor) {
|
||||
|
||||
Reference in New Issue
Block a user