Appearance tweaks

actionLogDisplay had white-on-white text in dark mode: I've fixed color to be black now.

added a title for the mini stream display during scans
This commit is contained in:
Richard Bowman 2024-01-11 14:08:32 +00:00
parent 13f39d5303
commit 20efaa2799
2 changed files with 4 additions and 0 deletions

View file

@ -58,6 +58,7 @@ export default {
overflow-y: auto; overflow-y: auto;
overflow-x: auto; overflow-x: auto;
background-color: white; background-color: white;
color: black;
padding: 0.5em; padding: 0.5em;
border: 1px solid black; border: 1px solid black;
} }

View file

@ -60,6 +60,9 @@
</div> </div>
</div> </div>
<div v-show="scanning"> <div v-show="scanning">
<h2 v-if="displayImageOnRight">
Live stitching preview
</h2>
<mini-stream-display v-if="displayImageOnRight" /> <mini-stream-display v-if="displayImageOnRight" />
<action-log-display <action-log-display
id="log-display" id="log-display"