Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement filter on wins page (#1030) #1034

Merged
Merged
15 changes: 11 additions & 4 deletions _sass/components/_wins-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,18 @@

//
ul.filter-list{
akibrhast marked this conversation as resolved.
Show resolved Hide resolved
grid-template-columns: repeat(2, 1fr) !important;
grid-template-columns: repeat(2, 1fr);
min-width: 216px;
width: 40%;
width: 46%;
}

.dropdown{
ul.filter-list li ul {
width: 100%;
}
}

@media (max-width: 659px){
akibrhast marked this conversation as resolved.
Show resolved Hide resolved
ul.wins-filter{
width: 100%;
grid-template-rows: none;
}
}
2 changes: 1 addition & 1 deletion wins.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
id="filter-template-container"
style="clear: left"
>
<ul class="filter-list" id="filter-list"
<ul class="filter-list wins-filter" id="filter-list"
>
<li class="filter-item">
<a
Expand Down