This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit f42dc6b31c277c59935d3325f4b3602168c57476 Author: Shad Storhaug <[email protected]> AuthorDate: Fri Oct 23 14:05:47 2020 +0700 websites/site/lucenetemplate/styles: Added padding to right side of menu to prevent Fork me on GihHub from overlapping it --- websites/site/lucenetemplate/styles/main.css | 7 ++++++- websites/site/lucenetemplate/styles/site.css | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/websites/site/lucenetemplate/styles/main.css b/websites/site/lucenetemplate/styles/main.css index 3e6fc5a..52cb883 100644 --- a/websites/site/lucenetemplate/styles/main.css +++ b/websites/site/lucenetemplate/styles/main.css @@ -74,6 +74,11 @@ header ul.navbar-nav { float: right; font-weight: 600; } +@media screen and (min-width: 768px) { + header ul.navbar-nav { + padding-right: 100px; + } +} .sidefilter { top: 120px; @@ -125,7 +130,7 @@ body .toc { bottom: 1px; top: auto; } -@media screen and (min-width: 800px) { +@media screen and (min-width: 768px) { #forkongithub { position: fixed; display: block; diff --git a/websites/site/lucenetemplate/styles/site.css b/websites/site/lucenetemplate/styles/site.css index 114bfab..709c269 100644 --- a/websites/site/lucenetemplate/styles/site.css +++ b/websites/site/lucenetemplate/styles/site.css @@ -209,7 +209,7 @@ pre.clean { bottom: 1px; top: auto; } -@media screen and (min-width: 800px) { +@media screen and (min-width: 768px) { #forkongithub { position: fixed; display: block;
