初始化提交

This commit is contained in:
王立帮
2024-07-19 10:16:00 +08:00
parent 4c7b571f20
commit 4a2d56dcc4
7084 changed files with 741212 additions and 63 deletions

View File

@@ -0,0 +1,47 @@
<style>
div[m-id="{{d.mId}}"] {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
div[m-id="{{d.mId}}"] > .mixly-nav {
width: 100%;
height: var(--nav-height);
}
div[m-id="{{d.mId}}"] > .mixly-workspace {
width: 100%;
height: calc(100vh - var(--nav-height) - var(--footer-height));
position: relative;
z-index: 1000;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
}
div[m-id="{{d.mId}}"] > .mixly-footerbar {
width: 100%;
height: var(--footer-height);
z-index: 1000;
}
html[data-bs-theme=dark] div[m-id="{{d.mId}}"] > .mixly-footerbar {
background-color: rgb(0, 122, 204);
}
html[data-bs-theme=light] div[m-id="{{d.mId}}"] > .mixly-footerbar {
background-color: rgb(0 150 136);
}
</style>
<div m-id="{{d.mId}}">
<div class="mixly-nav"></div>
<div class="mixly-workspace"></div>
<div class="mixly-footerbar"></div>
</div>