2021-01-29 09:18:22 +01:00
|
|
|
<template lang="pug">
|
|
|
|
div.document
|
2021-04-23 17:23:02 +02:00
|
|
|
v-scitech(:document="document")
|
2021-01-29 09:18:22 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'Document',
|
|
|
|
props: {
|
|
|
|
document: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
2021-04-23 17:23:02 +02:00
|
|
|
}
|
2021-01-29 09:18:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.document {
|
|
|
|
.top {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
h6 {
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-height: 200px;
|
|
|
|
max-width: 200px;
|
|
|
|
object-fit: contain;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
padding: 30px 0;
|
|
|
|
table {
|
|
|
|
font-size: 12px;
|
|
|
|
tr {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
th {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|