summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoromeid <public@omeid.me>2014-11-04 14:14:23 +1100
committeromeid <public@omeid.me>2014-11-04 14:14:23 +1100
commit80c6cc6321e5d8aebbedbdfb1cd5340d20fa094d (patch)
tree0e98876eb189013b7fc7d5f61242fb1b00f6d5f3
parente9875edcade5992df68f0467c110f22affa2434a (diff)
downloadgitea-80c6cc6321e5d8aebbedbdfb1cd5340d20fa094d.tar.gz
gitea-80c6cc6321e5d8aebbedbdfb1cd5340d20fa094d.zip
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.
-rw-r--r--public/ng/less/gogs/repository.less4
1 files 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
+}