@digital-ai/dot-illustrations 2.0.7 → 2.0.8
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/demo/script.js +3 -0
- package/index.css +22 -0
- package/package.json +1 -1
package/demo/script.js
CHANGED
package/index.css
CHANGED
|
@@ -210,7 +210,29 @@
|
|
|
210
210
|
content: url('./illustrations/dark/global/work-item.svg');
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
+
.dot-illustration img.404.light {
|
|
214
|
+
content: url('./illustrations/light/global/404.svg');
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.dot-illustration img.404.dark {
|
|
218
|
+
content: url('./illustrations/dark/global/404.svg');
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.dot-illustration img.500.light {
|
|
222
|
+
content: url('./illustrations/light/global/500.svg');
|
|
223
|
+
}
|
|
213
224
|
|
|
225
|
+
.dot-illustration img.500.dark {
|
|
226
|
+
content: url('./illustrations/dark/global/500.svg');
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.dot-illustration img.no-filters.light {
|
|
230
|
+
content: url('./illustrations/light/global/no-filters.svg');
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.dot-illustration img.no-filters.dark {
|
|
234
|
+
content: url('./illustrations/dark/global/no-filters.svg');
|
|
235
|
+
}
|
|
214
236
|
|
|
215
237
|
/* ------------------ DASHBOARD ILLUSTRATIONS -------------------- */
|
|
216
238
|
/*Path: --------- './illustrations/light/dashboards/*.svg ----- light */
|