From 98674ca3215c7d298cd59f164503e135d56ce798 Mon Sep 17 00:00:00 2001 From: jozebel11 Date: Fri, 2 Dec 2022 10:50:32 +0000 Subject: [PATCH] Add position stylingto playground container to equal 'relative' --- website/playground/playground.js | 1 + 1 file changed, 1 insertion(+) diff --git a/website/playground/playground.js b/website/playground/playground.js index e2518bcfbf..1e657a8bcd 100644 --- a/website/playground/playground.js +++ b/website/playground/playground.js @@ -65,6 +65,7 @@ playgroundContainer.style.width = WIDTH + 'px'; playgroundContainer.style.height = HEIGHT - FOOTER_HEIGHT + 'px'; + playgroundContainer.style.position = 'relative'; sampleSwitcher.style.position = 'absolute'; sampleSwitcher.style.top = TITLE_HEIGHT + 'px';