[#8256] Hide tour on admin welcome page for small screens
diff --git a/Allura/allura/ext/admin/templates/project_admin.html b/Allura/allura/ext/admin/templates/project_admin.html
index e4b4abf..e3cf0ba 100644
--- a/Allura/allura/ext/admin/templates/project_admin.html
+++ b/Allura/allura/ext/admin/templates/project_admin.html
@@ -83,10 +83,10 @@
 {% block content %}
     <p>This is the Admin area of your project, where you can set your project details, permissions, options and more.
         Your project has many tools available in the top menu, each with its own customization and settings.</p>
-    <p>Here's a quick tour of a few important things to get started:</p>
+    <p class="show-for-large">Here's a quick tour of a few important things to get started:</p>
 
     {% for step in tour.steps %}
-    <div class="tour-step-info">
+    <div class="tour-step-info show-for-large">
         <h2>{{ step.title }}</h2>
         <p>{{ step.content|safe }}
         </p>
@@ -135,4 +135,4 @@
     {% endif %}
 });
 </script>
-{% endblock %}
\ No newline at end of file
+{% endblock %}