Redo..People, Project pages

This commit is contained in:
samaradel
2020-11-29 16:12:45 +02:00
parent d98eb99411
commit 96ce74ee6f
4 changed files with 40 additions and 70 deletions

View File

@@ -1,6 +1,9 @@
<template>
<Layout>
<div class="container sm:pxi-0 mx-auto">
<div
class="container sm:pxi-0 mx-auto"
:style="{ 'min-height': contentHeight + 'px' }"
>
<div class="flex flex-wrap with-large pt-8 pb-8 mx-4 sm:-mx-4">
<PostListItem
v-for="edge in $page.entries.edges"
@@ -68,6 +71,11 @@ export default {
baseurl: function () {
return "";
},
contentHeight() {
if (process.isClient) {
return window.innerHeight - 100;
}
},
},
};
</script>