@edc-motor/ui 0.4.21 → 0.4.22
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edc-motor/ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.22",
|
|
4
4
|
"description": "EdC Motor — componentes públicos Vue 3 + tokens SCSS para webs de juegos de mesa (paquete fuente: lo compila el consumidor con Vite)",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"type": "module",
|
|
@@ -246,6 +246,10 @@
|
|
|
246
246
|
font-size: $fs-32;
|
|
247
247
|
font-style: italic;
|
|
248
248
|
color: $accent-500;
|
|
249
|
+
|
|
250
|
+
// La cita llega como richtext y .rich-content fija su propio cuerpo
|
|
251
|
+
// ($fs-16): aquí debe heredar el tamaño grande de la cita.
|
|
252
|
+
.rich-content { font-size: inherit; }
|
|
249
253
|
}
|
|
250
254
|
&__author {
|
|
251
255
|
margin-top: $space-2;
|
|
@@ -15,9 +15,9 @@ defineProps<{ settings: Record<string, unknown>; data?: Record<string, unknown>
|
|
|
15
15
|
<footer
|
|
16
16
|
v-if="settings.author"
|
|
17
17
|
class="block__author"
|
|
18
|
-
:class="`block__author--${settings.author_align || '
|
|
18
|
+
:class="`block__author--${settings.author_align || 'right'}`"
|
|
19
19
|
>
|
|
20
|
-
|
|
20
|
+
{{ settings.author }}
|
|
21
21
|
</footer>
|
|
22
22
|
</blockquote>
|
|
23
23
|
</BlockShell>
|