From b33efe697b6dcdb63228687e2457b2d7909513e2 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 2 Nov 2023 13:10:43 -0400 Subject: [PATCH] add recommended styles --- docs/pages/components/layout.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/pages/components/layout.md b/docs/pages/components/layout.md index eff9f0c64..ec159d343 100644 --- a/docs/pages/components/layout.md +++ b/docs/pages/components/layout.md @@ -45,9 +45,16 @@ The layout component _does not_ apply spacing for you. You can apply the appropr TODO - add example here -:::warning -When using ``, make sure to zero out all paddings and margins on `` and ``, otherwise you may see unexpected gaps. -::: +When using ``, make sure to zero out all paddings and margins on `` and ``, otherwise you may see unexpected gaps. The following styles are highly recommended when using ``. + +```css +html, +body { + min-height: 100%; + padding: 0; + margin: 0; +} +``` ## Skip To Content