diff --git a/beta/src/components/Layout/HomeContent.js b/beta/src/components/Layout/HomeContent.js index 077d049d0..1d15841e6 100644 --- a/beta/src/components/Layout/HomeContent.js +++ b/beta/src/components/Layout/HomeContent.js @@ -548,20 +548,22 @@ async function PostComments({ postId }) { setCommentsPromise={setCommentsPromise}> - - - +
+ + + +
@@ -602,7 +604,7 @@ function BrowserChrome({children, setPostPromise, setCommentsPromise}) { setTimeout(() => { postPromise._resolved = true; resolve(); - }, 800); + }, 200); }); const commentsPromise = new Promise((resolve) => { setTimeout(() => { diff --git a/beta/src/styles/index.css b/beta/src/styles/index.css index 462e33fb9..dfaa56f3d 100644 --- a/beta/src/styles/index.css +++ b/beta/src/styles/index.css @@ -322,3 +322,12 @@ ol.mdx-illustration-block { transform: translateX(-50%) translateY(-100%) rotate(90deg); } } + +@keyframes fadein { + from { + opacity: 0; + } + to { + opacity: 1; + } +}