AccountDeletePostV1

This commit is contained in:
2026-01-29 16:41:37 +11:00
parent 36ff34c893
commit bcd6d7c0ef
3 changed files with 248 additions and 26 deletions

View File

@@ -952,3 +952,73 @@ p {
display: none !important;
}
/* --- ONBOARDING STYLES --- */
.profile-upload-section {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.avatar-upload-wrapper {
width: 100px;
height: 100px;
border-radius: 50%;
position: relative;
cursor: pointer;
border: 2px dashed var(--glass-border);
padding: 2px;
transition: transform 0.2s;
}
.avatar-upload-wrapper:active {
transform: scale(0.95);
}
.avatar-upload-wrapper img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.upload-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.2s;
}
.avatar-upload-wrapper:hover .upload-overlay {
opacity: 1;
}
/* Fix Visibility for Onboarding Views */
#verification-view.hidden,
#onboarding-view.hidden {
display: none !important;
}
/* FINAL FIX: Ensure ALL login containers hide correctly */
.login-container.hidden,
#login-view.hidden {
display: none !important;
}
/* Fix Bottom Nav Z-Index and Visibility */
.bottom-nav {
z-index: 100;
}