@likable-hair/svelte 3.1.25 → 3.1.26
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--descriptive-avatar-default-image-gap: 8px;
|
|
3
3
|
--descriptive-avatar-default-text-gap: 2px;
|
|
4
|
-
--descriptive-avatar-default-font-size: 1.1rem;
|
|
4
|
+
--descriptive-avatar-default-title-font-size: 1.1rem;
|
|
5
|
+
--descriptive-avatar-default-subtitle-font-size: 1rem;
|
|
5
6
|
--descriptive-avatar-default-cursor: pointer;
|
|
6
7
|
}
|
|
@@ -162,8 +162,15 @@ export let src = void 0, title = void 0, subtitle = void 0, avatarText = !title
|
|
|
162
162
|
|
|
163
163
|
.title {
|
|
164
164
|
font-size: var(
|
|
165
|
-
--descriptive-avatar-font-size,
|
|
166
|
-
var(--descriptive-avatar-default-font-size)
|
|
165
|
+
--descriptive-avatar-title-font-size,
|
|
166
|
+
var(--descriptive-avatar-default-title-font-size)
|
|
167
|
+
)
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.subtitle {
|
|
171
|
+
font-size: var(
|
|
172
|
+
--descriptive-avatar-subtitle-font-size,
|
|
173
|
+
var(--descriptive-avatar-default-subtitle-font-size)
|
|
167
174
|
)
|
|
168
175
|
}
|
|
169
176
|
|