Skip to content

Commit

Permalink
🐛 (rating) Fix icons fill color
Browse files Browse the repository at this point in the history
Closes #1781
  • Loading branch information
baptisteArno committed Sep 12, 2024
1 parent c26ab77 commit d5484f9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/embeds/js/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
10 changes: 8 additions & 2 deletions packages/embeds/js/src/assets/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/embeds/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/embeds/react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit d5484f9

Please sign in to comment.