fix: remove unwanted margin

This commit is contained in:
2025-12-13 18:11:05 -03:00
parent 44005a0aa5
commit e105ce1942
2 changed files with 4 additions and 5 deletions

View File

@@ -9,7 +9,7 @@
placeholder="{{placeholder()}}"
type="{{type()}}"
>
<div class="errors-container">
<div>
@for(error of errorsDictionary()|keyvalue; track error.key) {
@if(control.hasError(error.key) && isDirty){
<p class="error-text">• {{error.value}}</p>

View File

@@ -21,11 +21,10 @@
}
}
.errors-container {
margin-top: 0.4rem;
}
.error-text {
&:first-of-type {
margin-top: 0.4rem;
}
margin: 0;
color: #000;
}