diff options
author | 2021-06-19 01:51:47 +0200 | |
---|---|---|
committer | 2021-06-18 16:51:47 -0700 | |
commit | 348babc6604b6279f44137f24cd5f6ce56ad8003 (patch) | |
tree | 3dfd71c27c429a22bfcdacecc19820a6d6c6e129 | |
parent | e8a976a543070bce4d661b5289e16d1097a593bc (diff) | |
download | astro-348babc6604b6279f44137f24cd5f6ce56ad8003.tar.gz astro-348babc6604b6279f44137f24cd5f6ce56ad8003.tar.zst astro-348babc6604b6279f44137f24cd5f6ce56ad8003.zip |
Fix horizontal scroll for starter template. (#498)
-rw-r--r-- | examples/starter/public/style/global.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/starter/public/style/global.css b/examples/starter/public/style/global.css index 0ce3b249a..e1a3a6bd1 100644 --- a/examples/starter/public/style/global.css +++ b/examples/starter/public/style/global.css @@ -12,7 +12,7 @@ body { padding: 4rem 2rem; - width: 100vw; + width: 100%; min-height: 100vh; display: grid; justify-content: center; |