From 80c6cc6321e5d8aebbedbdfb1cd5340d20fa094d Mon Sep 17 00:00:00 2001 From: omeid Date: Tue, 4 Nov 2014 14:14:23 +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 4a8bc738da..dc8a4804d6 100644 --- a/public/ng/less/gogs/repository.less +++ b/public/ng/less/gogs/repository.less @@ -89,7 +89,7 @@ padding: 18px 0; } .repo-wide-wrapper { - padding: 18px 0; + padding: 18px; position: relative; } #repo-clone-url { @@ -655,4 +655,4 @@ white-space: nowrap; margin-left: 44px; margin-top: -15px; -} \ No newline at end of file +}