mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-23 21:19:03 +08:00
24 lines
502 B
CSS
24 lines
502 B
CSS
.icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 12px;
|
|
background: url(../../../assets/gpt.svg) center center no-repeat;
|
|
background-size: contain;
|
|
}
|
|
|
|
.bar {
|
|
background: linear-gradient(90deg, rgba(41, 112, 255, 0.9) 0%, rgba(21, 94, 239, 0.9) 100%);
|
|
}
|
|
|
|
.bar-error {
|
|
background: linear-gradient(90deg, rgba(240, 68, 56, 0.72) 0%, rgba(217, 45, 32, 0.9) 100%);
|
|
}
|
|
|
|
.bar-item {
|
|
width: 10%;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.bar-item:last-of-type {
|
|
border-right: 0;
|
|
} |