22 lines
320 B
SCSS
22 lines
320 B
SCSS
.ps-form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&--label {
|
|
margin-bottom: 0.5rem;
|
|
display: flex;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ps-button {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
&--error {
|
|
margin-top: 0.25rem;
|
|
color: var(--accent);
|
|
font-weight: bold;
|
|
// font-family: monospace;
|
|
}
|
|
}
|