Add basic pipe to provide status to the pool id page

This commit is contained in:
Eli Ribble 2026-02-09 19:13:42 +00:00
parent d06b8f7949
commit 515dbb54fa
No known key found for this signature in database
5 changed files with 53 additions and 37 deletions

View file

@ -52,3 +52,4 @@ $theme-colors: map-merge(
@import "./rmo/status.scss";
@import "./sync/dashboard.scss";
@import "./sync/pool-csv-upload.scss";
@import "./sync/pool-by-id.scss";

13
scss/sync/pool-by-id.scss Normal file
View file

@ -0,0 +1,13 @@
.summary-card {
transition: transform 0.2s;
}
.summary-card:hover {
transform: translateY(-5px);
}
.warning-row {
background-color: rgba(255, 193, 7, 0.15) !important;
}
.status-badge {
font-size: 0.85rem;
}