Поправлены стили формы добавления ивента, исправлены зависимости package.json

This commit is contained in:
DwCay
2022-10-12 01:14:21 +03:00
parent 75b1f361ac
commit f86702f653
22 changed files with 1654 additions and 1267 deletions

View File

@@ -1,39 +1,30 @@
<template lang="pug">
.app-container
.flex.flex-col.w-full.h-full.gap-y-2
the-header
.pages-container
.flex.flex-auto
the-sidebar
router-view
</template>
<script>
import TheHeader from "@/components/TheHeader";
import TheSidebar from "@/components/TheSidebar";
export default {
name: "App",
components: {TheHeader, TheSidebar}
}
import TheHeader from "@/components/TheHeader";
import TheSidebar from "@/components/TheSidebar";
export default {
name: "App",
components: { TheHeader, TheSidebar },
};
</script>
<style lang="sass">
#app
font-feature-settings: "pnum" on, "lnum" on
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
height: 100%
width: 100%
line-height: normal
.pages-container
display: flex
flex: auto
.app-container
height: 100%
width: 100%
row-gap: 8px
display: flex
flex-direction: column
body
background-color: var(--bg-lavender-color)
margin: 0
padding: 0
#app
font-feature-settings: 'pnum' on, 'lnum' on
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
height: 100%
width: 100%
line-height: normal
body
background-color: var(--bg-lavender-color)
margin: 0
padding: 0
</style>