Skip to content

Commit

Permalink
Bug: Model from Equation - long equations cut off (#5923)
Browse files Browse the repository at this point in the history
Co-authored-by: Nelson Liu <[email protected]>
  • Loading branch information
asylves1 and liunelson authored Dec 24, 2024
1 parent 3d083b5 commit c47d063
Showing 1 changed file with 19 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,13 @@
<h6 v-else>Manually entered</h6>
</template>
<section>
<Checkbox
v-model="equation.includeInProcess"
@update:model-value="onCheckBoxChange(equation)"
:binary="true"
/>
<section class="checkbox-container">
<Checkbox
v-model="equation.includeInProcess"
@update:model-value="onCheckBoxChange(equation)"
:binary="true"
/>
</section>
<div class="block-container">
<tera-math-editor
v-if="equation.asset.text"
Expand Down Expand Up @@ -598,6 +600,14 @@ watch(
.secondary-text {
color: var(--text-color-subdued);
}
.panel-content section {
.checkbox-container {
min-height: 65px;
display: flex;
align-items: center;
}
}
/* PrimeVue Override */
.p-panel {
Expand All @@ -620,4 +630,8 @@ watch(
border-bottom-left-radius: 0;
color: #fff;
}
:deep(.p-panel section) {
align-items: start;
}
</style>

0 comments on commit c47d063

Please sign in to comment.