(react) add textItems to Field

This allow to add bullet points lists below inputs, the best example
is when we want to list multiple errors from form validation.

Fixes #147
This commit is contained in:
Nathan Vasse
2023-08-29 17:37:06 +02:00
committed by NathanVss
parent 468c8161eb
commit b530e966ae
11 changed files with 98 additions and 9 deletions

View File

@@ -9,8 +9,17 @@
&__footer {
font-size: var(--c--components--forms-field--font-size);
padding: 0.25rem calc(1rem + 2px) 0 calc(1rem + 2px);
display: flex;
justify-content: space-between;
&__top {
display: flex;
justify-content: space-between;
}
ul {
margin: 0.20rem 0 0 0;
padding: 0 0 0 1rem;
line-height: 1rem;
}
}
&__text, &__text-right {