Style explanation header with flexbox

This commit is contained in:
2026-01-08 02:22:55 +01:00
parent 618776a73e
commit b3d760bd11

View File

@@ -524,6 +524,14 @@ h4 {
border-top: 1px solid var(--border);
}
.explanation-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.explanation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));