diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-08 19:02:34 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-09 17:35:50 -0800 |
commit | 6976b6868cdf0628aa79d47aab4e889a9ccfc0dc (patch) | |
tree | 8f98a95d915af0bbac6035f9909516edc69ec39a /python/fatcat_web/templates/container_search.html | |
parent | 3e67a62ea11a9f8cd8c9f21e1019150d9ecca3b0 (diff) | |
download | fatcat-6976b6868cdf0628aa79d47aab4e889a9ccfc0dc.tar.gz fatcat-6976b6868cdf0628aa79d47aab4e889a9ccfc0dc.zip |
container SERP: fix layout on mobile
Diffstat (limited to 'python/fatcat_web/templates/container_search.html')
-rw-r--r-- | python/fatcat_web/templates/container_search.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index f091fc3b..0031a0a8 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -33,7 +33,12 @@ {% if found %} {% if found.results %} - {{ search_macros.top_results(query, found) }} + <div> + <div class="mobile-hide" style="float: right; margin-left: 0.5em; margin-top:0px; width: 150px; text-align: right;"> + <i>Content Status</i> + </div> + {{ search_macros.top_results(query, found) }} + </div> <br clear="all"> {% for entity in found.results %} |