🐛 (rating) Fix icons fill color
Some checks failed
Create Tag / create-tag (push) Has been cancelled

Closes #1781
This commit is contained in:
Baptiste Arnaud 2024-09-12 19:57:22 +02:00
parent c26ab77786
commit d5484f9366
No known key found for this signature in database
4 changed files with 11 additions and 5 deletions

View File

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

View File

@ -306,7 +306,10 @@ pre {
width: 42px;
height: 42px;
stroke: rgb(var(--typebot-button-bg-rgb));
fill: var(--typebot-host-bubble-bg-color);
fill: rgba(
var(--typebot-host-bubble-bg-rgb),
var(--typebot-host-bubble-opacity)
);
transition: fill 100ms ease-out;
}
@ -343,7 +346,10 @@ pre {
}
.secondary-button {
background-color: var(--typebot-host-bubble-bg-color);
background-color: rgba(
var(--typebot-host-bubble-bg-rgb),
var(--typebot-host-bubble-opacity)
);
color: var(--typebot-host-bubble-color);
border-radius: var(--typebot-button-border-radius);
}

View File

@ -1,6 +1,6 @@
{
"name": "@typebot.io/nextjs",
"version": "0.3.12",
"version": "0.3.13",
"description": "Convenient library to display typebots on your Next.js website",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@typebot.io/react",
"version": "0.3.12",
"version": "0.3.13",
"description": "Convenient library to display typebots on your React app",
"main": "dist/index.js",
"types": "dist/index.d.ts",