Files
mixly3/boards/default_src/python_skulpt_car/templates/html/statusbar-image.html
2025-04-28 00:57:30 +08:00

26 lines
609 B
HTML

<style>
div[m-id="{{d.mId}}"] {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
overflow-y: auto;
}
html[data-bs-theme=light] div[m-id="{{d.mId}}"] {
background-color: #ffffff;
}
html[data-bs-theme=dark] div[m-id="{{d.mId}}"] {
background-color: #1e1e1e;
}
div[m-id="{{d.mId}}"] > #output-img {
width: 400px;
height: fit-content;
position: relative;
}
</style>
<div m-id="{{d.mId}}" class="page-item mixly-scrollbar">
<div id="output-img"></div>
</div>