Reduce size of page buttons for smaller screens
diff --git a/templates/modules/pagination.html b/templates/modules/pagination.html
index 4f15113..97b3f60 100644
--- a/templates/modules/pagination.html
+++ b/templates/modules/pagination.html
@@ -3,7 +3,7 @@
 <span id="left">
 {% if articles_page.has_previous() %}
 {% set num = articles_page.previous_page_number() %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html"><i class="fa fa-arrow-circle-left"></i> Prev Page</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html"><i class="fa fa-arrow-circle-left"></i> Prev</a>
 {% endif %}
 </span>
 
@@ -13,7 +13,7 @@
 
 <span id="right">
 {% if articles_page.has_next() %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next Page <i class="fa fa-arrow-circle-right"></i></a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next <i class="fa fa-arrow-circle-right"></i></a>
 {% endif %}
 </span>
 </div>