Update background to grayscale gradient
Some checks failed
Deploy to Production / deploy (push) Failing after 7s
Some checks failed
Deploy to Production / deploy (push) Failing after 7s
This commit is contained in:
22
src/App.vue
22
src/App.vue
@@ -1,10 +1,28 @@
|
||||
<script setup>
|
||||
import Main from './components/main.vue'
|
||||
import Main from './components/Main.vue'
|
||||
import NavBar from './components/NavBar.vue'
|
||||
import Footer from './components/Footer.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Main />
|
||||
<NavBar />
|
||||
|
||||
<main class="app-content">
|
||||
<Main />
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.app-content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
padding: 2rem 0;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user