style changes
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<main>
|
||||
<h1>404 not found lol</h1>
|
||||
<img href="/img/Untitled.png" ) />
|
||||
<img href="/img/epic.jpeg" ) />
|
||||
<RouterLink to="/">Take me home!</RouterLink>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
20
nginx/vue/src/views/Admin.vue
Normal file
20
nginx/vue/src/views/Admin.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup>
|
||||
import Login from "@/components/admin/Login.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main class="center-content flex-col">
|
||||
<div class="a5page-portrait bdr-1 grid">
|
||||
<Login />
|
||||
</div>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-gap: 10px;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-rows: repeat(2, 1fr);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user