We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d41f228 commit f955ea1Copy full SHA for f955ea1
2 files changed
packages/ui/src/components/dock-surface.css
@@ -4,7 +4,7 @@
4
position: relative;
5
z-index: 10;
6
border-radius: 12px;
7
- overflow: clip;
+ overflow: hidden;
8
}
9
10
[data-dock-surface="tray"] {
packages/ui/src/components/message-part.css
@@ -909,6 +909,8 @@
909
gap: 4px;
910
flex: 1;
911
min-height: 0;
912
+ overflow-y: auto;
913
+ max-height: calc(var(--question-prompt-max-height, 70dvh) - 140px);
914
915
916
[data-slot="question-text"] {
@@ -935,15 +937,6 @@
935
937
gap: 6px;
936
938
margin-top: 12px;
939
padding: 1px 1px 8px;
- flex: 1;
- min-height: 0;
940
- overflow-y: auto;
941
- scrollbar-width: none;
942
- -ms-overflow-style: none;
943
-
944
- &::-webkit-scrollbar {
945
- display: none;
946
- }
947
948
949
[data-slot="question-option"] {
0 commit comments