sabrebooking / sabrefrontend / src / components / ProfileData.css
ProfileData.css
Raw
.profile-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.welcome-message {
    font-size: 1em;
    color: white;
    margin-left: 10px;
}
.welcome-message:hover {
    color: gray;
}
.user-image-wrapper {
    background-color: aqua;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.user-image {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the area without stretching */
}