ef891a23b5
1. The grid based unhealthy cards are now clamped to only four wide maximum. This means that on larger screen the cards are much wider meaning you can view more information. Grid gutters are also clamped at a certain ideal width screen, remaining responsive for anything below this. 2. The healthy node columns are finally responsive following the same column rules as unhealthy nodes
40 lines
727 B
SCSS
40 lines
727 B
SCSS
.unhealthy > div,
|
|
.healthy > div {
|
|
@extend %card-grid;
|
|
}
|
|
.list-collection {
|
|
height: 500px;
|
|
position: relative;
|
|
}
|
|
.healthy > div {
|
|
width: calc(100% + 23px);
|
|
min-height: 500px;
|
|
}
|
|
.unhealthy > div {
|
|
margin-bottom: 20px;
|
|
}
|
|
.healthy > div > ul > li {
|
|
padding-right: 23px;
|
|
padding-bottom: 20px;
|
|
}
|
|
%card-grid > ul,
|
|
%card-grid > ol {
|
|
list-style-type: none;
|
|
display: grid;
|
|
grid-auto-rows: 12px;
|
|
}
|
|
@media #{$--fixed-grid} {
|
|
%card-grid > ul,
|
|
%card-grid > ol {
|
|
grid-gap: 20px 20px;
|
|
grid-template-columns: repeat(4, minmax(220px, 1fr));
|
|
}
|
|
}
|
|
@media #{$--lt-fixed-grid} {
|
|
%card-grid > ul,
|
|
%card-grid > ol {
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
grid-gap: 20px 2%;
|
|
}
|
|
}
|