vite-plugin-blocklet 0.13.0 → 0.13.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 +2 -1
- package/libs/loading.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -381,10 +381,11 @@ function generateHtml({ color, image, showDots = true, showPoweredBy, poweredByT
|
|
|
381
381
|
#loadingPoweredBy {
|
|
382
382
|
position: fixed;
|
|
383
383
|
color: oklch(70.7% 0.022 261.325);
|
|
384
|
-
bottom:
|
|
384
|
+
bottom: 8px;
|
|
385
385
|
left: 0;
|
|
386
386
|
right: 0;
|
|
387
387
|
text-align: center;
|
|
388
|
+
font-size: 12px;
|
|
388
389
|
opacity: ${showPoweredBy ? 1 : 0.01};
|
|
389
390
|
}
|
|
390
391
|
|
package/libs/loading.js
CHANGED
|
@@ -133,10 +133,11 @@ function generateHtml({ color, image, showDots = true, showPoweredBy, poweredByT
|
|
|
133
133
|
#loadingPoweredBy {
|
|
134
134
|
position: fixed;
|
|
135
135
|
color: oklch(70.7% 0.022 261.325);
|
|
136
|
-
bottom:
|
|
136
|
+
bottom: 8px;
|
|
137
137
|
left: 0;
|
|
138
138
|
right: 0;
|
|
139
139
|
text-align: center;
|
|
140
|
+
font-size: 12px;
|
|
140
141
|
opacity: ${showPoweredBy ? 1 : 0.01};
|
|
141
142
|
}
|
|
142
143
|
|