Landing + other fixes (#909)

This commit is contained in:
Geometrically
2023-01-13 12:01:20 -07:00
committed by GitHub
parent 17f00e6fea
commit 6a52d03329
4 changed files with 14 additions and 27 deletions

View File

@@ -886,20 +886,6 @@ export default {
</script>
<style lang="scss" scoped>
// Mobile-first CSS: search page is grid on mobile...
.search-page {
display: grid;
grid-template-rows: auto;
grid-template-columns: 100%;
// ...and flex on desktop
@media screen and (min-width: 1024px) {
display: flex;
// Note that the actual flex layout properties come from .normal-page
}
}
.normal-page__content {
// Passthrough children as grid items on mobile
display: contents;