Fix footer

This commit is contained in:
samaradel
2020-11-26 14:54:39 +02:00
parent 47d08e42a1
commit 1ce9fdef6d
2 changed files with 2 additions and 18 deletions

View File

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

View File

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