@inchurch/matcha-theme 22.14.4 → 22.14.5
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.
|
@@ -349,10 +349,22 @@
|
|
|
349
349
|
height: 100%;
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
+
// Suffix costuma agrupar mais de uma info (contador de caracteres + ícone de
|
|
353
|
+
// status/erro) — 8px de respiro entre elas. Regra global (sem ::ng-deep): o
|
|
354
|
+
// host do <matcha-suffix> tem class .matcha-form-field-suffix e vive dentro do
|
|
355
|
+
// matcha-form-field. O display:inline-flex vem do component scss.
|
|
356
|
+
.matcha-form-field-suffix {
|
|
357
|
+
gap: var(--matcha-space-100, 8px);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
// @deprecated `.matcha-suffix` (div avulsa) — use o componente <matcha-suffix>
|
|
361
|
+
// (host `.matcha-form-field-suffix`), que já traz o gap de 8px entre múltiplas
|
|
362
|
+
// infos. Mantido só por retrocompat; migrar consumidores e remover numa próxima major.
|
|
352
363
|
.matcha-suffix {
|
|
353
364
|
display: flex;
|
|
354
365
|
flex-wrap: nowrap;
|
|
355
366
|
align-items: center;
|
|
367
|
+
gap: var(--matcha-space-100, 8px);
|
|
356
368
|
}
|
|
357
369
|
}
|
|
358
370
|
|