feat(profile-form): refactor form-group styles and update error handling in checkout form

This commit is contained in:
2026-07-08 09:05:15 -03:00
parent b9b8a70ca1
commit 64ade4d595
4 changed files with 39 additions and 47 deletions

View File

@@ -33,4 +33,27 @@ label {
margin-bottom: 0.375rem;
font-size: 13px;
font-weight: 400;
}
.form-group {
display: flex;
flex-direction: column;
gap: 8px;
label {
font-size: 14px;
color: #888;
font-weight: normal;
margin-bottom: 0;
}
.required {
color: var(--color-danger, #dc3545);
margin-left: 2px;
}
.error {
font-size: 0.75rem;
color: var(--color-danger, #dc3545);
}
}