Skip to content
Snippets Groups Projects
Commit 2128c3e3 authored by Eric Bremner's avatar Eric Bremner
Browse files

Merge branch 'feature/ISTWCMS-5772-m26lebla-listing-page-narrow-width' into '3.1.x'

ISTWCMS-5772: adding the css to correct the listing grid at narrow widths

See merge request !209
parents 0bc2cdec d067deda
No related branches found
No related tags found
1 merge request!209ISTWCMS-5772: adding the css to correct the listing grid at narrow widths
......@@ -226,11 +226,20 @@ $sidebar-width: 18.75rem;
.path-profiles,
.path-opportunities {
.view-content {
display: grid;
gap:$grid-gap;
grid-template-columns:repeat(2 ,1fr);
grid-template-rows:repeat(4, min-content);
padding:0;
display: block;
padding: 0;
@include small {
display: grid;
gap: $grid-gap;
grid-template-columns:repeat(2 ,1fr);
grid-template-rows:repeat(4, min-content);
}
.views-row{
margin-bottom: $grid-gap;
@include small {
margin-bottom: 0;
}
}
}
}
.path-news,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment