You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Compass has a global bullet point override but we clear this for the chat.
29
+
ul: {
30
+
listStyleType: 'disc',
31
+
},
32
+
ol: {
33
+
listStyleType: 'decimal',
34
+
},
35
+
});
36
+
26
37
// TODO(COMPASS-9751): These are temporary patches to make the Assistant chat take the entire
27
38
// width and height of the drawer since Leafygreen doesn't support this yet.
28
39
constassistantChatFixesStyles=css({
29
40
// Negative margin to patch the padding of the drawer.
30
-
margin: -spacing[400],
31
-
'> div, > div > div, > div > div > div, > div > div > div > div': {
41
+
marginTop: -spacing[400],
42
+
'> div, > div > div, > div > div > div, > div > div > div': {
32
43
height: '100%',
33
44
},
45
+
// This is currently set to 'pre-wrap' which causes list items to be on a different line than the list markers.
46
+
'li, ol': {
47
+
whiteSpace: 'normal',
48
+
},
49
+
/** TODO(COMPASS-9751): We're adjusting styling of all the headers to a lower level than the default for chat, this should be updated in Leafygreen as well and removed from our end. */
0 commit comments