diff --git a/prefix_finder/frontend/static/css/main.css b/prefix_finder/frontend/static/css/main.css
index 280b713..efc7f1c 100644
--- a/prefix_finder/frontend/static/css/main.css
+++ b/prefix_finder/frontend/static/css/main.css
@@ -1137,7 +1137,7 @@ fieldset {
display: flex;
flex-direction: column;
}
-@media (min-width: 40em) {
+@media (min-width: 100em) {
.homepage {
height: 100vh;
}
diff --git a/prefix_finder/frontend/templates/list.html b/prefix_finder/frontend/templates/list.html
index bafcd73..d186792 100644
--- a/prefix_finder/frontend/templates/list.html
+++ b/prefix_finder/frontend/templates/list.html
@@ -40,7 +40,7 @@
Description
diff --git a/prefix_finder/frontend/views.py b/prefix_finder/frontend/views.py
index fc116d5..fad1da9 100644
--- a/prefix_finder/frontend/views.py
+++ b/prefix_finder/frontend/views.py
@@ -500,7 +500,7 @@ def list_details(request, prefix):
except KeyError:
raise Http404('Organization list {} does not exist'.format(prefix))
- return render(request, 'list.html', context={'org_list': org_list, 'branch':use_branch})
+ return render(request, 'list.html', context={'org_list': org_list, 'lookups': lookups, 'branch':use_branch})
def _get_filename(use_branch='master'):