Add audio clips option on text input block

Closes #157
This commit is contained in:
Baptiste Arnaud
2024-08-20 14:35:20 +02:00
parent 984c2bf387
commit 135251d3f7
55 changed files with 1535 additions and 366 deletions

View File

@@ -456,6 +456,27 @@ select option {
transition: width 0.25s ease;
}
.typebot-recorder .left-gradient {
background-image: linear-gradient(
to right,
rgba(var(--typebot-input-bg-rgb), 1),
rgba(var(--typebot-input-bg-rgb), 0)
);
}
.typebot-recorder .right-gradient {
background-image: linear-gradient(
to left,
rgba(var(--typebot-input-bg-rgb), 1),
rgba(var(--typebot-input-bg-rgb), 0)
);
}
.typebot-recorder button {
color: rgba(var(--typebot-button-bg-rgb));
background-color: rgba(var(--typebot-button-bg-rgb), 0.3);
}
@keyframes fadeInFromTop {
0% {
opacity: 0;