@chatui/core
Version:
The React library for Chatbot UI
24 lines (22 loc) • 460 B
text/less
.Progress {
display: flex;
height: @progress-height;
overflow: hidden;
background-color: @progress-bg;
border-radius: @progress-border-radius;
&-bar {
overflow: hidden;
background-color: @progress-bar-bg;
transition: @progress-bar-transition;
}
&--success {
.Progress-bar {
background-color: @progress-bar-bg-success;
}
}
&--error {
.Progress-bar {
background-color: @progress-bar-bg-error;
}
}
}