diff --git a/src/webviews/apps/home/home.html b/src/webviews/apps/home/home.html
index c2f5509..22529fc 100644
--- a/src/webviews/apps/home/home.html
+++ b/src/webviews/apps/home/home.html
@@ -132,9 +132,15 @@
Find many features by opening the
Source Control Side Bar.
- Click on the icon to the left to set the location of your GitLens views.
+
+ Click on
+ the icon to the leftbelowa layout option to set the location of your GitLens views.
+
-
+
diff --git a/src/webviews/apps/home/home.scss b/src/webviews/apps/home/home.scss
index 7829acf..a5890db 100644
--- a/src/webviews/apps/home/home.scss
+++ b/src/webviews/apps/home/home.scss
@@ -378,6 +378,11 @@ ul {
align-items: stretch;
gap: 1.6rem;
+ @media (max-width: 280px) {
+ flex-direction: column;
+ align-items: center;
+ }
+
ul {
display: flex;
flex-direction: column;
@@ -598,3 +603,14 @@ vscode-button {
fill: var(--vscode-activityBar-foreground);
}
}
+
+@media (max-width: 280px) {
+ .not-small {
+ display: none;
+ }
+}
+@media (min-width: 281px) {
+ .only-small {
+ display: none;
+ }
+}