From 479d926b4bd8ae4594be8eb3f5ee72e33572a98d Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 2 Jul 2019 19:01:38 +0300 Subject: [PATCH] fix(docs-infra): improve `search-results` layout on smaller screens (#31390) Previously, the `search-results` layout was switch from horizontal to vertical at 480px. Yes, since some search queries can yield more than 5 `.search-area`s, even 600px are too narrow to accomodate a horizontal layout. This commit changes the breakpoint at which the layout switches to vertical from 480px to 600px. PR Close #31390 --- aio/src/styles/2-modules/_search-results.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/src/styles/2-modules/_search-results.scss b/aio/src/styles/2-modules/_search-results.scss index 8b9598901e..18e220eb04 100644 --- a/aio/src/styles/2-modules/_search-results.scss +++ b/aio/src/styles/2-modules/_search-results.scss @@ -66,7 +66,7 @@ aio-search-results { } } - @media (max-width: 480px) { + @media (max-width: 600px) { display: block; } }