@rogieking/figui3 8.9.1 → 8.9.3
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.
- package/components.css +4 -0
- package/dist/components.css +1 -1
- package/dist/fig-editor.css +1 -1
- package/dist/fig-lab.css +1 -1
- package/dist/fig.css +1 -1
- package/fig-editor.css +4 -0
- package/fig-lab.css +4 -3
- package/package.json +1 -1
package/fig-editor.css
CHANGED
package/fig-lab.css
CHANGED
|
@@ -181,20 +181,21 @@ fig-attachment {
|
|
|
181
181
|
}
|
|
182
182
|
|
|
183
183
|
fig-chat-message {
|
|
184
|
-
display:
|
|
184
|
+
display: flex;
|
|
185
|
+
flex-direction: column;
|
|
186
|
+
gap: var(--spacer-2-5);
|
|
185
187
|
box-sizing: border-box;
|
|
186
188
|
width: 100%;
|
|
187
189
|
max-width: 100%;
|
|
188
190
|
color: var(--figma-color-text);
|
|
189
191
|
font-size: var(--body-large-fontSize);
|
|
190
|
-
line-height: calc(var(--line-height) + var(--spacer-1));
|
|
191
192
|
overflow-wrap: anywhere;
|
|
192
193
|
white-space: pre-wrap;
|
|
193
194
|
|
|
194
195
|
&[from="user"] {
|
|
195
196
|
width: auto;
|
|
196
197
|
margin-inline-start: var(--spacer-4);
|
|
197
|
-
padding: var(--spacer-2
|
|
198
|
+
padding: var(--spacer-2-5);
|
|
198
199
|
border-radius: var(--radius-large);
|
|
199
200
|
background: var(--figma-color-bg-secondary);
|
|
200
201
|
}
|
package/package.json
CHANGED