Add max height to highlight note textarea

This commit is contained in:
Ramon Wenger 2024-05-07 15:33:19 +02:00
parent cbdff6a782
commit c6b4d698e9
1 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,7 @@
v-if="inEditMode"
>
<textarea
class="borderless-textarea"
class="borderless-textarea highlight-sidebar__textarea"
placeholder="Notiz erfassen..."
data-cy="highlight-note-input"
v-model="note"
@ -194,5 +194,9 @@ const isOverflowing = computed(() => {
&__edit-note {
cursor: pointer;
}
&__textarea {
max-height: 250px;
}
}
</style>