From 89ff809720c95a051b212dba23f16c45d0a1b3ef Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 22 Feb 2022 17:54:45 -0500 Subject: [PATCH] Fixes links bar layout when small --- src/webviews/apps/home/home.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/webviews/apps/home/home.scss b/src/webviews/apps/home/home.scss index b55c567..49f9437 100644 --- a/src/webviews/apps/home/home.scss +++ b/src/webviews/apps/home/home.scss @@ -93,6 +93,14 @@ p { padding: 0; white-space: nowrap; } + + @media screen and (max-width: 450px) { + grid-template-columns: repeat(2, auto); + } + + @media screen and (max-width: 350px) { + grid-template-columns: 1fr; + } } vscode-button {