Spaces:
Paused
Paused
Create user-info.component.scss
Browse files
flare-ui/src/app/components/user-info/user-info.component.scss
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.user-info-container {
|
| 2 |
+
max-width: 500px;
|
| 3 |
+
margin: 0 auto;
|
| 4 |
+
|
| 5 |
+
h2 {
|
| 6 |
+
margin-bottom: 24px;
|
| 7 |
+
color: #333;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
form {
|
| 11 |
+
display: flex;
|
| 12 |
+
flex-direction: column;
|
| 13 |
+
gap: 16px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.full-width {
|
| 17 |
+
width: 100%;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.password-strength {
|
| 21 |
+
margin-top: -12px;
|
| 22 |
+
margin-bottom: 8px;
|
| 23 |
+
|
| 24 |
+
.strength-label {
|
| 25 |
+
font-size: 12px;
|
| 26 |
+
margin-bottom: 4px;
|
| 27 |
+
color: #666;
|
| 28 |
+
|
| 29 |
+
span {
|
| 30 |
+
font-weight: 500;
|
| 31 |
+
|
| 32 |
+
&.strength-warn {
|
| 33 |
+
color: #f44336;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
&.strength-accent {
|
| 37 |
+
color: #ff9800;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
&.strength-primary {
|
| 41 |
+
color: #4caf50;
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
mat-progress-bar {
|
| 47 |
+
height: 6px;
|
| 48 |
+
border-radius: 3px;
|
| 49 |
+
}
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.form-actions {
|
| 53 |
+
margin-top: 16px;
|
| 54 |
+
text-align: right;
|
| 55 |
+
|
| 56 |
+
button {
|
| 57 |
+
min-width: 120px;
|
| 58 |
+
}
|
| 59 |
+
}
|
| 60 |
+
}
|