changeset 5627:3a5cf8d80089

mod_http_oauth2: Tweak method of centering the UI The percentage here was relative to the viewport width, which on some very wide screens may put the UI slightly outside of the view, requiring scrolling to see. By using a unit relative to the height of the viewport, this is avoided and should work better. But no guarantees, it's still possible to resize the browser or adjust font sizes so that the UI goes out of view.
author Kim Alvefur <zash@zash.se>
date Mon, 31 Jul 2023 07:28:09 +0200
parents a44af1b646f5
children 9aace51c3637
files mod_http_oauth2/html/style.css
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_oauth2/html/style.css	Mon Jul 31 02:07:58 2023 +0200
+++ b/mod_http_oauth2/html/style.css	Mon Jul 31 07:28:09 2023 +0200
@@ -1,6 +1,5 @@
 body
 {
-	margin-top:14%;
 	text-align:center;
 	background-color:#f8f8f8;
 	font-family:sans-serif
@@ -106,6 +105,9 @@
 
 @media(min-width: 768px)
 {
+	body {
+		margin-top:14vh;
+	}
 	header, main, footer
 	{
 		margin-left: auto;