index.module.css 508 B

123456789101112131415161718192021222324
  1. .icon {
  2. width: 24px;
  3. height: 24px;
  4. margin-right: 12px;
  5. background: url(../../../assets/anthropic.svg) center center no-repeat;
  6. background-size: contain;
  7. }
  8. .bar {
  9. background: linear-gradient(90deg, rgba(41, 112, 255, 0.9) 0%, rgba(21, 94, 239, 0.9) 100%);
  10. }
  11. .bar-error {
  12. background: linear-gradient(90deg, rgba(240, 68, 56, 0.72) 0%, rgba(217, 45, 32, 0.9) 100%);
  13. }
  14. .bar-item {
  15. width: 10%;
  16. border-right: 1px solid rgba(255, 255, 255, 0.5);
  17. }
  18. .bar-item:last-of-type {
  19. border-right: 0;
  20. }