-
-
-
-
- lorem ipsum dolor sit amet
-
-
-
-
-
+
+
+
+
lorem ipsum dolor sit amet
+
+
+
\ No newline at end of file
+ .circle {
+ width: 18px;
+ height: 18px;
+ border-radius: 50%;
+ }
+
diff --git a/examples/svelte/simple/src/routes/+page.svelte b/examples/svelte/simple/src/routes/+page.svelte
index 98961d3..6c45e34 100644
--- a/examples/svelte/simple/src/routes/+page.svelte
+++ b/examples/svelte/simple/src/routes/+page.svelte
@@ -6,10 +6,10 @@ import Card from '$lib/components/Card.svelte'
@@ -19,6 +19,7 @@ import Card from '$lib/components/Card.svelte'
color-scheme: light dark;
background-color: light-dark(white, hsl(0 0% 10%));
color: light-dark(black, white);
+ --skeleton-radius: 4px;
}
.container {
@@ -28,11 +29,11 @@ import Card from '$lib/components/Card.svelte'
}
.card2 {
- margin-left: 16px;
+ margin-left: 10rem;
}
.card3 {
- margin-left: 32px;
+ margin-left: 20rem;
}
\ No newline at end of file
diff --git a/examples/vue/simple/src/App.vue b/examples/vue/simple/src/App.vue
index 9681fdb..2bc4f5c 100644
--- a/examples/vue/simple/src/App.vue
+++ b/examples/vue/simple/src/App.vue
@@ -7,10 +7,10 @@ import Card from './components/Card.vue'
@@ -20,6 +20,14 @@ import Card from './components/Card.vue'
color-scheme: light dark;
background-color: light-dark(white, hsl(0 0% 10%));
color: light-dark(black, white);
+ --skeleton-radius: 4px;
+}
+
+.orange-purple-loader {
+ --skeleton-base-color: tomato;
+ --skeleton-highlight-color: darkred;
+ --skeleton-base-color-dark: darkslateblue;
+ --skeleton-highlight-color-dark: indigo;
}
.container {
@@ -29,10 +37,10 @@ import Card from './components/Card.vue'
}
.card2 {
- margin-left: 16px;
+ margin-left: 10rem;
}
.card3 {
- margin-left: 32px;
+ margin-left: 20rem;
}
diff --git a/examples/vue/simple/src/components/Card.vue b/examples/vue/simple/src/components/Card.vue
index f327358..83e4cc0 100644
--- a/examples/vue/simple/src/components/Card.vue
+++ b/examples/vue/simple/src/components/Card.vue
@@ -1,8 +1,13 @@
-