Files

82 lines
1.3 KiB
CSS

.profile-view {
max-width: 860px;
}
.profile-header {
margin-bottom: 22px;
}
.profile-header h1 {
margin: 0;
color: var(--bs-body-color);
font-size: 28px;
font-weight: 800;
}
.profile-layout {
display: grid;
grid-template-columns: 240px minmax(0, 1fr);
gap: 32px;
align-items: start;
}
.profile-avatar-panel,
.profile-form-panel {
min-width: 0;
}
.profile-avatar-preview {
display: grid;
width: 132px;
height: 132px;
margin-bottom: 14px;
place-items: center;
overflow: hidden;
border: 1px solid var(--bs-border-color);
border-radius: 999px;
background: var(--bs-secondary-bg);
}
.profile-avatar-preview img {
width: 100%;
height: 100%;
object-fit: cover;
}
.profile-avatar-fallback {
color: var(--bs-secondary-color);
font-size: 42px;
}
.profile-picture-button {
margin-bottom: 10px;
}
.profile-remove-picture {
display: flex;
align-items: center;
gap: 8px;
color: var(--bs-secondary-color);
font-size: 14px;
font-weight: 700;
}
.profile-actions {
display: flex;
align-items: center;
gap: 12px;
margin-top: 18px;
}
.profile-status {
color: var(--bs-secondary-color);
font-size: 14px;
font-weight: 700;
}
@media (max-width: 700px) {
.profile-layout {
grid-template-columns: 1fr;
}
}