From 927a438547f203db236562bed5b1ff5705b03502 Mon Sep 17 00:00:00 2001 From: Robert McGovern Date: Tue, 1 Feb 2022 11:38:45 +0000 Subject: [PATCH] Revert "redid setting page width/height" This reverts commit 16d2a241c3bc846519d4b699da581b9d4a6ab589. --- .../newbie/order-summary-component/css/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/FrontendMentor/newbie/order-summary-component/css/style.css b/FrontendMentor/newbie/order-summary-component/css/style.css index e249f67..50c4dbf 100644 --- a/FrontendMentor/newbie/order-summary-component/css/style.css +++ b/FrontendMentor/newbie/order-summary-component/css/style.css @@ -54,9 +54,13 @@ /* General Formatting */ +html, body { + height: 100%; width: 100%; - min-height: 100vh; +} + +body { font-family: "Red Hat Display", sans-serif; background-color: var(--clr-pale-blue); } @@ -64,6 +68,8 @@ body { main { background-image: var(--page-background-img); background-repeat: no-repeat; + min-height: 100%; + display: flex; flex-direction: column; align-items: center;