fix css header desktop

This commit is contained in:
Andreani Jean
2023-03-06 11:22:48 +01:00
parent 1a08b5deba
commit 5201e15d57

View File

@@ -44,17 +44,17 @@ onMounted(async () => {
})
</script>
<style scoped>
.entry-page {
display: flex;
padding-top: 6rem;
}
.entry-viewer {
position: relative;
min-height: calc(100vh - 8rem);
width: 100vw;
}
@media (max-width: 500px) {
.entry-viewer {
position: relative;
min-height: 100vh;
min-height: -webkit-fill-available;
min-height: moz-available;
min-height: fill-available;
}
}
</style>