Align usage metrics to meter edges

This commit is contained in:
seo
2026-06-26 01:41:08 +09:00
parent 14f546890a
commit 2b76a779c6
+11
View File
@@ -1029,9 +1029,20 @@ if (isset($_GET['mode']) && $_GET['mode'] === 'usage') {
grid-template-columns: repeat(6, minmax(100px, 1fr));
gap: 0.8rem;
min-width: 660px;
align-items: start;
}
.usage-metric {
min-width: 0;
text-align: center;
justify-self: center;
}
.usage-metric:first-child {
text-align: left;
justify-self: start;
}
.usage-metric:last-child {
text-align: right;
justify-self: end;
}
.usage-metric .label-text {
font-size: 0.7rem;