From 0e1fd71456b86898b4932c25ec6e3f72b517cb78 Mon Sep 17 00:00:00 2001 From: omeid Date: Mon, 3 Nov 2014 21:55:02 +1100 Subject: [PATCH] Fix x padding for #repo-content for width < 1170px This pull request fixes the issue when resizing the window smaller than 1170 px, right now there is no padding/margin on sides and it looks broken. --- public/ng/less/gogs/repository.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/ng/less/gogs/repository.less b/public/ng/less/gogs/repository.less index 4a8bc738d..24f054175 100644 --- a/public/ng/less/gogs/repository.less +++ b/public/ng/less/gogs/repository.less @@ -86,7 +86,7 @@ } } #repo-content { - padding: 18px 0; + padding: 18px; } .repo-wide-wrapper { padding: 18px 0; @@ -655,4 +655,4 @@ white-space: nowrap; margin-left: 44px; margin-top: -15px; -} \ No newline at end of file +}