diff --git a/demos/index.html b/demos/index.html index 1d885ed2..7e374420 100644 --- a/demos/index.html +++ b/demos/index.html @@ -25,6 +25,7 @@ h1 { font-size: 24px; + text-align: center; } h2 { @@ -35,11 +36,29 @@ display: block; padding: 4px; } + + section { + display: flex; + flex-direction: column; + justify-content: center; + border-radius: 0.25rem; + padding: 1rem; + background-color: #fafafa; + } + + .container { + max-width: 640px; + margin: 0 auto; + padding: 1rem; + }
+