KEA update
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-16 01:19:07 +02:00
parent 04ec9dc227
commit 9f2af4676d
8 changed files with 416 additions and 46 deletions

View File

@@ -853,3 +853,47 @@ a {
.kea-edit-form__wide {
grid-column: 1 / -1;
}
.kea-check-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 14px;
padding: 16px;
}
.kea-check-card {
border: 1px solid var(--line);
border-radius: 8px;
background: var(--surface);
padding: 14px;
}
.kea-check-card h4 {
margin: 0 0 8px;
}
.kea-check-card p {
margin: 6px 0;
}
.ip-matrix {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(10px, 1fr));
gap: 4px;
max-width: 360px;
}
.ip-dot {
width: 10px;
height: 10px;
border-radius: 3px;
border: 1px solid var(--line);
}
.ip-dot.is-free {
background: var(--accent-green);
}
.ip-dot.is-used {
background: color-mix(in srgb, var(--muted) 55%, var(--surface));
}