26 lines
269 B
SCSS
26 lines
269 B
SCSS
:host {
|
|
display: block;
|
|
}
|
|
|
|
.k-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.k-form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.k-label {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.k-form-error {
|
|
color: #f31700;
|
|
font-size: 0.875rem;
|
|
}
|
|
|