From 3dc34afff39d4cc64e2dcc09581cd0ff0a14ac89 Mon Sep 17 00:00:00 2001 From: senfbrot <38048190+senfbrot@users.noreply.github.com> Date: Tue, 16 Apr 2019 16:54:41 +0200 Subject: [PATCH] Fix page objects offset with Chrome 73 This seems to fix the issue #139 regarding the offset. We noticed this when Shinydashboard is used with Chrome 73. --- src/main/resources/static/css/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/css/default.css b/src/main/resources/static/css/default.css index 7ae4c702..9db4d8f6 100644 --- a/src/main/resources/static/css/default.css +++ b/src/main/resources/static/css/default.css @@ -22,7 +22,7 @@ body > div { padding-top: 10px; } body > div#navbar { padding-top: 0px; } #navbar + div { padding-top: 50px; } -#navbar + iframe { padding-top: 50px; } +#navbar + iframe { margin-top: 50px; } @media screen and (max-width: 768px) { #navbar + div { padding-top: 150px; }