mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-24 13:11:50 +00:00
Fix fullscreen automator bugs
This commit is contained in:
parent
de1865c366
commit
c759bed76f
@ -37,38 +37,6 @@
|
||||
--color-blockmator-editor-background: black;
|
||||
}
|
||||
|
||||
.c-automator-tab {
|
||||
width: 80%;
|
||||
min-width: 100rem;
|
||||
}
|
||||
|
||||
.c-automator-split-pane {
|
||||
width: 100%;
|
||||
height: 57rem;
|
||||
background-color: #bbbbbb;
|
||||
}
|
||||
|
||||
.s-base--dark .c-automator-split-pane {
|
||||
width: 100%;
|
||||
background-color: #474747;
|
||||
}
|
||||
|
||||
.c-automator-tab--full-screen .c-automator-split-pane {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 4;
|
||||
margin-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.l-automator-tab {
|
||||
position: relative;
|
||||
align-self: center;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.l-automator-points-list-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
@ -219,6 +219,7 @@ export default {
|
||||
.c-button-group {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.c-automator__status-text {
|
||||
|
@ -66,7 +66,7 @@ export default {
|
||||
class="c-automator-tab l-automator-tab"
|
||||
>
|
||||
<div v-if="automatorUnlocked">
|
||||
<div class="c-automator-tab__interval-info">
|
||||
<div>
|
||||
{{ intervalText }}
|
||||
</div>
|
||||
<span :class="{ 'c-overlimit': currentChars > maxScriptChars }">
|
||||
@ -107,4 +107,36 @@ export default {
|
||||
font-weight: bold;
|
||||
color: var(--color-bad);
|
||||
}
|
||||
|
||||
.c-automator-tab {
|
||||
width: 80%;
|
||||
min-width: 100rem;
|
||||
}
|
||||
|
||||
.l-automator-tab {
|
||||
position: relative;
|
||||
align-self: center;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.c-automator-split-pane {
|
||||
width: 100%;
|
||||
height: 57rem;
|
||||
background-color: #bbbbbb;
|
||||
}
|
||||
|
||||
.s-base--dark .c-automator-split-pane {
|
||||
width: 100%;
|
||||
background-color: #474747;
|
||||
}
|
||||
|
||||
.c-automator-tab--full-screen .c-automator-split-pane {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 6;
|
||||
margin-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user