From 44df4b2c3f710fa5c04266a3717a848d6865bce3 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 16 Nov 2013 22:14:42 +0100 Subject: [PATCH] Added space left and right of pagination --- app/assets/stylesheets/my.css.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/my.css.scss b/app/assets/stylesheets/my.css.scss index ee0cd2e..21a2c05 100644 --- a/app/assets/stylesheets/my.css.scss +++ b/app/assets/stylesheets/my.css.scss @@ -25,12 +25,18 @@ div.thumbnail /* Pagination is shown in top bar. Reduce margin to avoid making the nav bar larger. */ ul.pagination { - margin-top: 8px; - margin-bottom: 0; + margin: 8px 16px; +} + +/* Make paginator a bit narrower to save space */ +ul.pagination li a +{ + padding-left: 6px; + padding-right: 6px; } /* Top bar is fixed. Move main part down so the bar does not hide it. */ .container-main { margin-top: 60px; -} \ No newline at end of file +}