fix(docs-infra): show (and style correctly) the 'No results found' message (#31390)

PR Close #31390
This commit is contained in:
George Kalpakas 2019-07-02 19:51:36 +03:00 committed by Matias Niemelä
parent 479d926b4b
commit 9b29ca95a2
2 changed files with 11 additions and 1 deletions

View File

@ -26,5 +26,5 @@
</ng-template>
<ng-template #notFound>
<p>{{notFoundMessage}}</p>
<p class="not-found">{{notFoundMessage}}</p>
</ng-template>

View File

@ -66,6 +66,12 @@ aio-search-results {
}
}
.not-found {
color: $white;
text-align: center;
margin: 16px;
}
@media (max-width: 600px) {
display: block;
}
@ -93,6 +99,10 @@ aio-search-results {
}
}
}
.not-found {
color: $darkgray;
}
}
}
}