listpage-next 0.0.205 → 0.0.207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,10 @@ const Reasoning = ({ thinking, children })=>{
|
|
|
12
12
|
return /*#__PURE__*/ jsxs(ReasoningContainer, {
|
|
13
13
|
style: {
|
|
14
14
|
padding: collapsed ? '6px 12px' : '0px 12px 13px 12px',
|
|
15
|
-
backgroundColor: collapsed ? void 0 : '#fff'
|
|
15
|
+
backgroundColor: collapsed ? void 0 : '#fff',
|
|
16
|
+
...collapsed && {
|
|
17
|
+
maxWidth: 240
|
|
18
|
+
}
|
|
16
19
|
},
|
|
17
20
|
children: [
|
|
18
21
|
/*#__PURE__*/ jsxs(ReasoningHeader, {
|
|
@@ -47,7 +50,7 @@ const ReasoningContainer = styled.div`
|
|
|
47
50
|
&:hover {
|
|
48
51
|
background-color: #0000000a;
|
|
49
52
|
}
|
|
50
|
-
|
|
53
|
+
width: 100%;
|
|
51
54
|
|
|
52
55
|
& > * {
|
|
53
56
|
box-sizing: border-box;
|