fix grid-cell-overflow bug and improved breadcrumb-spacing

This commit is contained in:
Felix Hamann 2018-07-05 23:44:44 +02:00
parent d644cc5a94
commit 5dd46bd567
2 changed files with 4 additions and 3 deletions

View File

@ -430,7 +430,7 @@ input[type="button"].btn-info:hover,
} }
.deflist__dt, .deflist__dt,
.deflist__dd { .deflist__dd {
padding: 4px 0; padding: 2px 0;
} }
.deflist__dt { .deflist__dt {
@ -444,13 +444,13 @@ input[type="button"].btn-info:hover,
} }
.deflist__dd { .deflist__dd {
margin-bottom: 13px; margin-bottom: 4px;
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.deflist { .deflist {
grid-template-columns: repeat(2, max-content); grid-template-columns: max-content auto;
} }
.deflist__dt, .deflist__dt,

View File

@ -17,6 +17,7 @@
.breadcrumbs__container { .breadcrumbs__container {
margin-left: 10px; margin-left: 10px;
margin-top: 10px;
} }
} }