This commit is contained in:
Professional 2025-05-25 01:56:32 +07:00
parent 112ce00bf4
commit 62763c567d

View File

@ -115,7 +115,6 @@
<button class="tab-btn" :class="{ 'active': activeTab === 'photos' }" @click="activeTab = 'photos'"> <button class="tab-btn" :class="{ 'active': activeTab === 'photos' }" @click="activeTab = 'photos'">
<i class="bi-images"></i> <i class="bi-images"></i>
<span>Фотографии</span> <span>Фотографии</span>
<span class="tab-badge" v-if="profileData.photos?.length">{{ profileData.photos.length }}</span>
</button> </button>
<button class="tab-btn" :class="{ 'active': activeTab === 'preferences' }" @click="activeTab = 'preferences'"> <button class="tab-btn" :class="{ 'active': activeTab === 'preferences' }" @click="activeTab = 'preferences'">
<i class="bi-sliders"></i> <i class="bi-sliders"></i>
@ -1775,25 +1774,6 @@ onUnmounted(() => {
background: rgba(102, 126, 234, 0.05); background: rgba(102, 126, 234, 0.05);
} }
.tab-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 18px;
height: 18px;
padding: 0 0.3rem;
border-radius: 9px;
font-size: 0.7rem;
font-weight: 600;
background: #e9ecef;
color: #6c757d;
}
.tab-btn.active .tab-badge {
background: #667eea;
color: white;
}
/* Tabs Content */ /* Tabs Content */
.tabs-content { .tabs-content {
background: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.9);