WIP Создал форму Аллергий

This commit is contained in:
DwCay
2023-04-18 17:25:33 +03:00
parent 28e37dbc93
commit 5baefcc1f8
7 changed files with 168 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
<template lang="pug">
.flex.flex-col.gap-y-2.wrapper.h-full
allergies-form
</template>
<script>
import AllergiesForm from "@/pages/newMedicalCard/components/AllergiesForms/AllergiesForm.vue";
export default {
name: "MedicalAlergiesWrapper",
components: { AllergiesForm },
};
</script>
<style lang="sass" scoped>
.wrapper
width: 83.2%
@media (max-width: 600px)
width: fit-content
&::-webkit-scrollbar
width: 0
</style>