gege-jdr/src/App.vue
Lucien Cartier-Tilet 2871eec4b5 Some more stuff
Sorry, I’m in a rush, can’t be bothered to properly commit
2024-02-17 04:51:19 +01:00

39 lines
679 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router';
import AppHeader from './components/AppHeader.vue';
import AppFooter from './components/AppFooter.vue';
</script>
<template>
<AppHeader />
<main class="flex-col-center gap-3rem">
<RouterView />
</main>
<AppFooter />
</template>
<style scoped lang="less">
main {
justify-content: flex-start;
margin: 5rem;
align-content: center;
padding-top: 4.5rem !important;
padding-bottom: 10rem !important;
}
header {
position: fixed;
top: 0;
width: 100%;
}
@media screen {
@media (max-width: 1000px) {
main {
margin: 3% 5%;
overflow: visible !important;
}
}
}
</style>