opus-react 0.2.40 → 0.2.41
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/dist/index.cjs +163 -123
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +35 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +163 -123
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -15153,13 +15153,47 @@
|
|
|
15153
15153
|
}
|
|
15154
15154
|
|
|
15155
15155
|
.opus_4Pogux_footer {
|
|
15156
|
-
border-top: 1px solid color-mix(in srgb, var(--opus-border) 82%, transparent);
|
|
15157
15156
|
color: var(--opus-muted);
|
|
15158
15157
|
flex-shrink: 0;
|
|
15159
15158
|
margin-top: 8px;
|
|
15160
15159
|
padding: 8px 0 0;
|
|
15161
15160
|
font-size: .78rem;
|
|
15162
15161
|
line-height: 1.4;
|
|
15162
|
+
position: relative;
|
|
15163
|
+
}
|
|
15164
|
+
|
|
15165
|
+
.opus_4Pogux_footer:before {
|
|
15166
|
+
background: color-mix(in srgb, var(--opus-border) 82%, transparent);
|
|
15167
|
+
content: "";
|
|
15168
|
+
height: 1px;
|
|
15169
|
+
position: absolute;
|
|
15170
|
+
top: 0;
|
|
15171
|
+
left: 0;
|
|
15172
|
+
right: 0;
|
|
15173
|
+
}
|
|
15174
|
+
|
|
15175
|
+
.opus_4Pogux_sidebar[data-footer-padding-left="true"] .opus_4Pogux_footer:before {
|
|
15176
|
+
left: 16px;
|
|
15177
|
+
}
|
|
15178
|
+
|
|
15179
|
+
.opus_4Pogux_sidebar[data-footer-padding-right="true"] .opus_4Pogux_footer:before {
|
|
15180
|
+
right: 16px;
|
|
15181
|
+
}
|
|
15182
|
+
|
|
15183
|
+
.opus_4Pogux_sidebar[data-footer-padding-top="true"] .opus_4Pogux_footer {
|
|
15184
|
+
padding-top: 14px;
|
|
15185
|
+
}
|
|
15186
|
+
|
|
15187
|
+
.opus_4Pogux_sidebar[data-footer-padding-right="true"] .opus_4Pogux_footer {
|
|
15188
|
+
padding-right: 16px;
|
|
15189
|
+
}
|
|
15190
|
+
|
|
15191
|
+
.opus_4Pogux_sidebar[data-footer-padding-bottom="true"] .opus_4Pogux_footer {
|
|
15192
|
+
padding-bottom: 12px;
|
|
15193
|
+
}
|
|
15194
|
+
|
|
15195
|
+
.opus_4Pogux_sidebar[data-footer-padding-left="true"] .opus_4Pogux_footer {
|
|
15196
|
+
padding-left: 16px;
|
|
15163
15197
|
}
|
|
15164
15198
|
|
|
15165
15199
|
.opus_4Pogux_sidebar[data-collapsed="true"] .opus_4Pogux_footer {
|