mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-12 04:37:50 +01:00
fff80cd4e7
- fix(nexus): Preparing configs to be published - feat(nexus): Various fixes for opening left sources - fix(nexus): Fine-tune versions 1 internal commit(s) GitOrigin-RevId: 6c834cd3f4f5f18109a159a73503700dac63b0bb
46 lines
702 B
Vue
46 lines
702 B
Vue
<template lang="pug">
|
|
div.document
|
|
v-scitech(:document="document")
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Document',
|
|
props: {
|
|
document: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</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>
|