@measured/puck-plugin-heading-analyzer 0.15.0-canary.e0448f0 → 0.15.0-canary.e2cd445
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 +22 -0
- package/dist/index.js +857 -2477
- package/package.json +2 -2
package/dist/index.css
CHANGED
@@ -121,6 +121,28 @@
|
|
121
121
|
font-size: var(--puck-font-size-xs);
|
122
122
|
}
|
123
123
|
|
124
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Loader/styles.module.css/#css-module-data */
|
125
|
+
@keyframes _loader-animation_nacdm_1 {
|
126
|
+
0% {
|
127
|
+
transform: rotate(0deg) scale(1);
|
128
|
+
}
|
129
|
+
50% {
|
130
|
+
transform: rotate(180deg) scale(0.8);
|
131
|
+
}
|
132
|
+
100% {
|
133
|
+
transform: rotate(360deg) scale(1);
|
134
|
+
}
|
135
|
+
}
|
136
|
+
._Loader_nacdm_13 {
|
137
|
+
background: transparent;
|
138
|
+
border-radius: 100%;
|
139
|
+
border: 2px solid currentColor;
|
140
|
+
border-bottom-color: transparent;
|
141
|
+
display: inline-block;
|
142
|
+
animation: _loader-animation_nacdm_1 1s 0s infinite linear;
|
143
|
+
animation-fill-mode: both;
|
144
|
+
}
|
145
|
+
|
124
146
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/OutlineList/styles.module.css/#css-module-data */
|
125
147
|
._OutlineList_18bgy_1 {
|
126
148
|
color: var(--puck-color-grey-03);
|