crane-cloud/frontend

View on GitHub
src/components/AppStatus/AppStatus.css

Summary

Maintainability
Test Coverage
.StatusWrapper {
  width: 100%;
  display: grid;
  justify-content: center;
}
.StatusSignal {
  border-radius: 50%;
  width: 0.8rem;
  height: 0.8rem;
}

.StatusRunning {
  background-color: #98a058;
}

.StatusFailed {
  background-color: #ff0000;
}

.StatusOther {
  background-color: var(--secondary-color);
}