[WIP] Добавил popup дл документов

This commit is contained in:
megavrilinvv
2022-11-22 18:38:23 +03:00
parent 4f02e28fa2
commit dc8c53ed91
5 changed files with 51 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<template lang="pug">
.flex.flex-col.gap-y-3
.button.keep-redaction.flex.items-center.gap-x-2
img(:src="docIcon")
span.text-smm Создать пакет документов
.button.keep-redaction.flex.items-center.gap-x-3
img(:src="manyDocIcon")
span.text-smm Добавить документы
</template>
<script>
import docIcon from "@/assets/icons/doc.svg";
import manyDocIcon from "@/assets/icons/manyDoc.svg";
export default {
name: "TableChoiceAddingDoc",
data() {
return {
docIcon,
manyDocIcon,
};
},
};
</script>
<style lang="sass" scoped>
.keep-redaction
color: var(--font-dark-blue-color)
.button
&:hover
opacity: 0.7
</style>