Tidied up mini stream formatting
This commit is contained in:
parent
ac21bb3617
commit
5298430971
4 changed files with 15 additions and 3 deletions
|
|
@ -313,6 +313,5 @@ export default {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
border: 1px solid #555;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,7 @@ export default {
|
||||||
.stream-display img {
|
.stream-display img {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
|
border: 1px solid #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-display {
|
.stream-display {
|
||||||
|
|
|
||||||
|
|
@ -146,6 +146,5 @@ export default {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
border: 1px solid #555;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -27,19 +27,25 @@
|
||||||
Download calibration data
|
Download calibration data
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<div id="mini-stream">
|
||||||
|
<miniStreamDisplay />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import taskSubmitter from "../../genericComponents/taskSubmitter";
|
import taskSubmitter from "../../genericComponents/taskSubmitter";
|
||||||
|
import miniStreamDisplay from "../miniStreamDisplay.vue";
|
||||||
|
|
||||||
// Export main app
|
// Export main app
|
||||||
export default {
|
export default {
|
||||||
name: "CameraStageMappingSettings",
|
name: "CameraStageMappingSettings",
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
taskSubmitter
|
taskSubmitter,
|
||||||
|
miniStreamDisplay
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
|
@ -167,4 +173,11 @@ export default {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
#mini-stream {
|
||||||
|
width: 500px;
|
||||||
|
text-align: center;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 50px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue