anentrypoint-design 0.0.41 → 0.0.43
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/247420.app.js +2 -2
- package/dist/247420.css +22 -0
- package/dist/247420.js +3 -3
- package/package.json +13 -1
- package/src/desktop/icons.js +11 -0
- package/src/desktop/index.js +3 -0
- package/src/desktop/shell.js +180 -0
- package/src/desktop/theme.css +297 -0
package/dist/247420.css
CHANGED
|
@@ -757,6 +757,28 @@
|
|
|
757
757
|
.ds-247420 :focus-visible { outline: 2px solid var(--panel-accent) !important; outline-offset: 2px; }
|
|
758
758
|
.ds-247420, .ds-247420 body { margin: 0; padding: 0; }
|
|
759
759
|
|
|
760
|
+
/* Base element padding — browser UA stylesheets strip padding on button/textarea
|
|
761
|
+
in some reset contexts; restore sane defaults so raw elements look right. */
|
|
762
|
+
.ds-247420 button {
|
|
763
|
+
padding: 8px 18px;
|
|
764
|
+
border-radius: var(--r-2);
|
|
765
|
+
font-family: var(--ff-ui);
|
|
766
|
+
font-size: var(--fs-sm);
|
|
767
|
+
cursor: pointer;
|
|
768
|
+
background: var(--bg-2);
|
|
769
|
+
color: var(--fg);
|
|
770
|
+
}
|
|
771
|
+
.ds-247420 textarea {
|
|
772
|
+
padding: 10px 12px;
|
|
773
|
+
border-radius: var(--r-2);
|
|
774
|
+
font-family: var(--ff-ui);
|
|
775
|
+
font-size: var(--fs-sm);
|
|
776
|
+
background: var(--bg-2);
|
|
777
|
+
color: var(--fg);
|
|
778
|
+
resize: vertical;
|
|
779
|
+
}
|
|
780
|
+
.ds-247420 textarea::placeholder { color: var(--fg-3); }
|
|
781
|
+
|
|
760
782
|
/* app-shell.css */
|
|
761
783
|
/* ============================================================
|
|
762
784
|
App shell — IDE-modern density patterns
|