mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-19 21:04:33 +08:00
🐛 (rating) Fix icons fill color
Some checks failed
Create Tag / create-tag (push) Has been cancelled
Some checks failed
Create Tag / create-tag (push) Has been cancelled
Closes #1781
This commit is contained in:
parent
c26ab77786
commit
d5484f9366
@ -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",
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user