@thesquad-components/sqd-module-template 0.1.2 → 0.1.6
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.css +6 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +160 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +159 -32
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +8 -0
- package/package.json +7 -7
package/dist/index.css
CHANGED
|
@@ -805,6 +805,9 @@
|
|
|
805
805
|
.right-3\.5 {
|
|
806
806
|
right: calc(var(--spacing) * 3.5);
|
|
807
807
|
}
|
|
808
|
+
.right-4 {
|
|
809
|
+
right: calc(var(--spacing) * 4);
|
|
810
|
+
}
|
|
808
811
|
.-bottom-0\.5 {
|
|
809
812
|
bottom: calc(var(--spacing) * -0.5);
|
|
810
813
|
}
|
|
@@ -829,6 +832,9 @@
|
|
|
829
832
|
.bottom-3 {
|
|
830
833
|
bottom: calc(var(--spacing) * 3);
|
|
831
834
|
}
|
|
835
|
+
.bottom-4 {
|
|
836
|
+
bottom: calc(var(--spacing) * 4);
|
|
837
|
+
}
|
|
832
838
|
.bottom-5 {
|
|
833
839
|
bottom: calc(var(--spacing) * 5);
|
|
834
840
|
}
|