Add max height to highlight note textarea
This commit is contained in:
parent
cbdff6a782
commit
c6b4d698e9
|
|
@ -27,7 +27,7 @@
|
||||||
v-if="inEditMode"
|
v-if="inEditMode"
|
||||||
>
|
>
|
||||||
<textarea
|
<textarea
|
||||||
class="borderless-textarea"
|
class="borderless-textarea highlight-sidebar__textarea"
|
||||||
placeholder="Notiz erfassen..."
|
placeholder="Notiz erfassen..."
|
||||||
data-cy="highlight-note-input"
|
data-cy="highlight-note-input"
|
||||||
v-model="note"
|
v-model="note"
|
||||||
|
|
@ -194,5 +194,9 @@ const isOverflowing = computed(() => {
|
||||||
&__edit-note {
|
&__edit-note {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__textarea {
|
||||||
|
max-height: 250px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue