Groundwork

This commit is contained in:
2022-05-08 15:35:43 +03:00
parent 44f6c82a4e
commit 17aa8c75b1
52 changed files with 13631 additions and 29700 deletions

19
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<div class="app-backdrop"></div>
<router-view/>
<div id="modalSpot" />
</template>
<style lang="scss">
@import "@/scss/style.scss";
.app-backdrop {
z-index: -10000;
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: $darker;
}
</style>