Hide location columns on medium screens (#109)

This commit is contained in:
l5y
2025-09-16 19:43:31 +02:00
committed by GitHub
parent 84ed739a61
commit 3b64e829a8
+13
View File
@@ -88,6 +88,19 @@
.info-details dt { font-weight: 600; margin-top: 12px; color: #222; }
.info-details dd { margin: 4px 0 0; }
.info-details dd a { color: inherit; word-break: break-word; }
@media (max-width: 1280px) {
#nodes th:nth-child(12),
#nodes td:nth-child(12),
#nodes th:nth-child(13),
#nodes td:nth-child(13),
#nodes th:nth-child(14),
#nodes td:nth-child(14),
#nodes th:nth-child(15),
#nodes td:nth-child(15) {
display: none;
}
}
@media (max-width: 768px) {
.row { flex-direction: column; align-items: stretch; gap: var(--pad); }
.map-row { flex-direction: column; }