diff --git a/static/style.css b/static/style.css index 0996d792..cd0c5eeb 100644 --- a/static/style.css +++ b/static/style.css @@ -170,3 +170,16 @@ textarea.parsley-error { .domain_detail_content { font-size: 15px; } + +/* Only show the help button on desktop */ +@media only screen and (max-width: 500px) { + #help-btn { + display: none; + } +} + +@media only screen and (min-width: 500px) { + #help-btn { + display: flex; + } +} \ No newline at end of file diff --git a/templates/header.html b/templates/header.html index 60302b9f..8d5b94af 100644 --- a/templates/header.html +++ b/templates/header.html @@ -77,7 +77,7 @@ {% if ZENDESK_ENABLED %} -