aotds-docks/src/routes/export/print/PrintShip/index.svelte

38 lines
714 B
Svelte
Raw Normal View History

2023-04-25 18:50:15 +00:00
<div>Printing this page will only prints the ship sheet.</div>
<div class="print-output">
2023-04-26 13:53:22 +00:00
<Identification {...identification} />
2023-04-25 18:50:15 +00:00
2023-04-26 13:35:46 +00:00
<div class="section-2" />
2023-04-26 13:53:22 +00:00
<MainSystems {...propulsion} />
2023-04-25 18:50:15 +00:00
</div>
<script>
2023-04-26 13:53:22 +00:00
import Identification from "./Identification.svelte";
import MainSystems from "./MainSystems/index.svelte";
import Hull from "./Hull.svelte";
2023-04-25 18:50:15 +00:00
export let identification = {};
export let propulsion = {};
</script>
<style>
.print-output {
width: 4.25in;
height: 5.5in;
border: 1px solid black;
padding: 1em;
margin: 0px auto;
}
2023-04-26 13:53:22 +00:00
@media print {
:global(body > *) {
visibility: hidden;
}
2023-04-25 18:50:15 +00:00
2023-04-26 13:53:22 +00:00
.print-output {
visibility: visible;
}
}
2023-04-25 18:50:15 +00:00
</style>