Vista solo de categorías reformada en dos columnas

Alternativa con flexbox:

.category-list tbody {
    display: flex;
    flex-wrap: wrap;
}
.category-list tbody tr {
    width: 50%;
    display: flex;
}
.category-list tbody .category {
    flex: 1;
}

Aún hay algunos ajustes por hacer.

9 Me gusta