mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
26 lines
471 B
SCSS
26 lines
471 B
SCSS
/**
|
|
* Password Strength Indicator Styles
|
|
* Material Design 3 feedback component
|
|
*/
|
|
|
|
.strengthBar {
|
|
margin-top: var(--spacing-2);
|
|
margin-bottom: var(--spacing-1);
|
|
}
|
|
|
|
.strengthLabel {
|
|
font-size: 0.75rem;
|
|
color: var(--mat-sys-on-surface-variant);
|
|
margin-top: var(--spacing-1);
|
|
display: block;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.strengthHint {
|
|
font-size: 0.75rem;
|
|
color: var(--mat-sys-outline);
|
|
margin-top: var(--spacing-1);
|
|
display: block;
|
|
line-height: 1.4;
|
|
}
|