overflow
This commit is contained in:
parent
50cb23ccec
commit
983c630e6a
4
benchtop-fe/jest.config.json
Normal file
4
benchtop-fe/jest.config.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"bail": 1,
|
||||||
|
"verbose": true
|
||||||
|
}
|
@ -6,7 +6,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<div :class="{ hide: hide }" class="px666">
|
<div :class="{ hide: hide }" class="px666 scroll-pdf">
|
||||||
<div v-for="table of tables">
|
<div v-for="table of tables">
|
||||||
<div id="pdf" ref="document">
|
<div id="pdf" ref="document">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
@ -95,10 +95,10 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<!-- End InstrumentInfo -->
|
<!-- End InstrumentInfo -->
|
||||||
<!-- As Found -->
|
<!-- As Found -->
|
||||||
<ReadingTable />
|
<ReadingTable :as_found="table.as_found" />
|
||||||
<br/>
|
<br/>
|
||||||
<!-- As Left -->
|
<!-- As Left -->
|
||||||
<ReadingTable />
|
<ReadingTable :as_left="table.as_left" />
|
||||||
<!-- End Instruments-->
|
<!-- End Instruments-->
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<p>
|
<p>
|
||||||
@ -223,7 +223,7 @@ const output = () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return tables
|
// return tables
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -96,10 +96,13 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script setup>
|
||||||
export default {
|
import {defineProps, ref} from "vue";
|
||||||
name: 'ReadingTable'
|
|
||||||
}
|
const props = defineProps({
|
||||||
|
as_found: Object,
|
||||||
|
as_left: Object,
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@media print {
|
@media print {
|
||||||
|
@ -126,6 +126,6 @@ const emits = defineEmits([
|
|||||||
<style scoped>
|
<style scoped>
|
||||||
body {
|
body {
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
background: url("/public/funky-lines.webp");
|
background: url("/funky-lines.webp");
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
background: url("/public/funky-lines.webp");
|
background: url("/funky-lines.webp");
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
@ -93,4 +93,9 @@ h3 {
|
|||||||
|
|
||||||
.px666 {
|
.px666 {
|
||||||
width: 666px;
|
width: 666px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-pdf {
|
||||||
|
height: 90vh;
|
||||||
|
overflow: scroll;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user