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
This commit is contained in:
George Kalpakas 2019-07-02 19:01:38 +03:00 committed by Matias Niemelä
parent b9195289a5
commit 479d926b4b
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ aio-search-results {
}
}
@media (max-width: 480px) {
@media (max-width: 600px) {
display: block;
}
}