anentrypoint-design 0.0.176 → 0.0.177
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/package.json +1 -1
- package/src/kits/os/theme.css +14 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.177",
|
|
4
4
|
"description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/247420.js",
|
package/src/kits/os/theme.css
CHANGED
|
@@ -957,12 +957,24 @@ html.ds-247420 { touch-action: pan-x pan-y; overscroll-behavior: none; -webkit-t
|
|
|
957
957
|
* ----------------------------------------------------------------------- */
|
|
958
958
|
|
|
959
959
|
.ds-247420 freddie-chat,
|
|
960
|
-
.ds-247420 ds-chat
|
|
960
|
+
.ds-247420 ds-chat,
|
|
961
|
+
.ds-247420 freddie-chat.chat,
|
|
962
|
+
.ds-247420 ds-chat.chat {
|
|
961
963
|
display: flex;
|
|
962
964
|
flex-direction: column;
|
|
963
965
|
min-height: 0;
|
|
964
966
|
height: 100%;
|
|
965
967
|
overflow: hidden;
|
|
968
|
+
/* zero legacy .ds-247420 .chat + .chat (app-shell) token leak — host
|
|
969
|
+
carries `.chat` class so the legacy full-page chat-card rule
|
|
970
|
+
(margin:12px 0; max-width:820; min-height:480; padding-bottom:50)
|
|
971
|
+
applies. Bump specificity with the doubled-class selector. */
|
|
972
|
+
margin: 0 !important;
|
|
973
|
+
padding: 0 !important;
|
|
974
|
+
gap: 0 !important;
|
|
975
|
+
max-width: none !important;
|
|
976
|
+
background: transparent !important;
|
|
977
|
+
border-radius: 0 !important;
|
|
966
978
|
}
|
|
967
979
|
.ds-247420 freddie-chat > .chat,
|
|
968
980
|
.ds-247420 ds-chat > .chat {
|
|
@@ -971,6 +983,7 @@ html.ds-247420 { touch-action: pan-x pan-y; overscroll-behavior: none; -webkit-t
|
|
|
971
983
|
display: flex;
|
|
972
984
|
flex-direction: column;
|
|
973
985
|
overflow: hidden;
|
|
986
|
+
margin: 0;
|
|
974
987
|
padding: 0;
|
|
975
988
|
gap: 0;
|
|
976
989
|
}
|