2
0

🐛 (theme) Fix progress bar background color

This commit is contained in:
Baptiste Arnaud
2024-04-11 10:15:37 +02:00
parent 408aeb4df4
commit 51bf5b653c
6 changed files with 20 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@typebot.io/js",
"version": "0.2.67",
"version": "0.2.68",
"description": "Javascript library to display typebots on your website",
"type": "module",
"main": "dist/index.js",

View File

@@ -427,7 +427,7 @@ select option {
.typebot-progress-bar-container {
background-color: rgba(
var(--typebot-button-bg-rgb),
var(--typebot-progress-bar-bg-rgb),
calc(var(--selectable-alpha-ratio) * 0.12)
);

View File

@@ -49,7 +49,7 @@ const cssVariableNames = {
progressBar: {
position: '--typebot-progress-bar-position',
color: '--typebot-progress-bar-color',
colorRgb: '--typebot-progress-bar-color-rgb',
colorRgb: '--typebot-progress-bar-bg-rgb',
height: '--typebot-progress-bar-height',
top: '--typebot-progress-bar-top',
bottom: '--typebot-progress-bar-bottom',