Skip to content

Commit b6e6a2e

Browse files
authored
Make roomTexteare scrollable (#402)
1 parent 4db2377 commit b6e6a2e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/lib/Room/RoomFooter/RoomFooter.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
}
1313

1414
.vac-textarea {
15+
max-height: 300px;
16+
overflow-y: auto;
1517
height: 20px;
1618
width: 100%;
1719
line-height: 20px;
18-
overflow: hidden;
1920
outline: 0;
2021
resize: none;
2122
border-radius: 20px;
@@ -164,3 +165,9 @@
164165
}
165166
}
166167
}
168+
169+
@media only screen and (max-height: 768px) {
170+
.vac-textarea {
171+
max-height: 120px;
172+
}
173+
}

0 commit comments

Comments
 (0)