This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git

commit 817e781b60d2681028763b7421fbcb7853bab456
Author: Paddy <p.with...@gmail.com>
AuthorDate: Sun Dec 9 12:46:52 2018 -0700

    Fix iframe height issue on api.html page
    
    After removing height styles on parent elements, the iframe element on
    the api.html page was not showing full height.
    
    To fix this, the height: 100% rule was replaced with height: 100vh.
---
 site/src/site/assets/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/src/site/assets/css/style.css 
b/site/src/site/assets/css/style.css
index 5622d75..c1fb3c2 100644
--- a/site/src/site/assets/css/style.css
+++ b/site/src/site/assets/css/style.css
@@ -216,7 +216,7 @@ article .content time {
 
 .doc-embed {
     border: 0;
-    width: 100%;
+    height: 100vh;
     min-height: 100%;
 }
 

Reply via email to