Compare commits

..

No commits in common. "b448d0ddcd66499a3a989d9410e390632c152653" and "087542321afe27f887b1c242c7bf7002821f116c" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View file

@ -81,7 +81,7 @@
<div class='state' v-if="hit.assignment.submit_page_at"> <div class='state' v-if="hit.assignment.submit_page_at">
<h2>worker input</h2> <h2>worker input</h2>
<div class="svgcrop" style="height: 110px; overflow: hidden"> <div class="svgcrop" style="height: 110px; overflow: hidden">
<img :src="hit.svg_image" style="margin-top: -60px"> <object :data="hit.svg_image" style="margin-top: -60px" type="image/svg+xml"></object>
</div> </div>
<div class='columns'> <div class='columns'>
@ -105,11 +105,11 @@
</div> </div>
<div class='state scan' v-if="hit.scanned_at"> <div class='state' v-if="hit.scanned_at">
<!-- <h2>analog drawing</h2> --> <!-- <h2>analog drawing</h2> -->
<!-- <div class="statebox"> --> <!-- <div class="statebox"> -->
<!-- <img src="fake_scan.jpg">--> <img src="fake_scan.jpg">
<img :src="hit.scan_image"> <!-- <img :src="hit.scan_image"> -->
<!-- </div> --> <!-- </div> -->
</div> </div>

View file

@ -203,7 +203,3 @@ html, body{
.columns .column{ .columns .column{
flex-grow: 1; flex-grow: 1;
} }
.scan img{
vertical-align:bottom;
}