@homebound/beam 3.67.0 → 3.68.1
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 +352 -308
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +36 -3
- package/dist/index.d.ts +36 -3
- package/dist/index.js +302 -259
- package/dist/index.js.map +1 -1
- package/dist/truss.css +8 -2
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
.gap2 { gap: calc(var(--t-spacing) * 2); }
|
|
92
92
|
/* @truss p:2000 c:gap3 */
|
|
93
93
|
.gap3 { gap: calc(var(--t-spacing) * 3); }
|
|
94
|
-
/* @truss p:2000 c:
|
|
95
|
-
.
|
|
94
|
+
/* @truss p:2000 c:gap8 */
|
|
95
|
+
.gap8 { gap: calc(var(--t-spacing) * 8); }
|
|
96
96
|
/* @truss p:2000 c:gap_12px */
|
|
97
97
|
.gap_12px { gap: 12px; }
|
|
98
98
|
/* @truss p:2000 c:gap_4px */
|
|
@@ -673,6 +673,8 @@
|
|
|
673
673
|
.height_100dvh { height: 100dvh; }
|
|
674
674
|
/* @truss p:4000 c:l_0 */
|
|
675
675
|
.l_0 { left: 0; }
|
|
676
|
+
/* @truss p:4000 c:l_var_beam_side_nav_layout_width_0px */
|
|
677
|
+
.l_var_beam_side_nav_layout_width_0px { left: var(--beam-side-nav-layout-width, 0px); }
|
|
676
678
|
/* @truss p:4000 c:left0 */
|
|
677
679
|
.left0 { left: calc(var(--t-spacing) * 0); }
|
|
678
680
|
/* @truss p:4000 c:left1 */
|
|
@@ -871,6 +873,8 @@
|
|
|
871
873
|
.pr_10px { padding-right: 10px; }
|
|
872
874
|
/* @truss p:4000 c:pr_12px */
|
|
873
875
|
.pr_12px { padding-right: 12px; }
|
|
876
|
+
/* @truss p:4000 c:pr_24px */
|
|
877
|
+
.pr_24px { padding-right: 24px; }
|
|
874
878
|
/* @truss p:4000 c:pr_2px */
|
|
875
879
|
.pr_2px { padding-right: 2px; }
|
|
876
880
|
/* @truss p:4000 c:pr_4px */
|
|
@@ -985,6 +989,8 @@
|
|
|
985
989
|
.w_calc_100_16px { width: calc(100% + 16px); }
|
|
986
990
|
/* @truss p:4000 c:w_calc_100_20px */
|
|
987
991
|
.w_calc_100_20px { width: calc(100% - 20px); }
|
|
992
|
+
/* @truss p:4000 c:w_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px */
|
|
993
|
+
.w_calc_var_beam_layout_viewport_width_100vw_var_beam_side_nav_layout_width_0px { width: calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)); }
|
|
988
994
|
/* @truss p:4000 c:w_max_content */
|
|
989
995
|
.w_max_content { width: max-content; }
|
|
990
996
|
/* @truss p:4000 c:wa */
|