9 Tutorial fix

This commit is contained in:
2026-02-06 21:49:43 +01:00
parent d91e2912d1
commit 90cdc7948a
3 changed files with 68 additions and 2 deletions

View File

@@ -115,4 +115,32 @@ button#btn-reset {
display: block;
font-weight: bold;
letter-spacing: 0.5px;
}
}
.user-card {
background: #f5f5f5;
border-radius: 10px;
padding: 15px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.user-avatar {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
}
.user-info {
display: flex;
flex-direction: column;
}
.user-name {
font-weight: bold;
color: #333;
}
.user-email {
font-size: 0.9em;
color: #777;
}