Merge branch 'main' into pages

This commit is contained in:
xiaoxian521
2025-11-26 08:20:46 +08:00
2 changed files with 5 additions and 3 deletions

View File

@@ -321,10 +321,9 @@
.chrome-tab-divider { .chrome-tab-divider {
position: absolute; position: absolute;
right: 7px; left: 7px;
width: 1px; width: 1px;
height: 14px; height: 14px;
background-color: #2b2d2f;
} }
&:hover { &:hover {

View File

@@ -618,6 +618,10 @@ onBeforeUnmount(() => {
/> />
</template> </template>
<div v-else class="chrome-tab"> <div v-else class="chrome-tab">
<span
v-if="index !== 0 && index !== activeIndex"
class="chrome-tab-divider bg-[#e2e2e2] dark:bg-[#2d2d2d]"
/>
<div class="chrome-tab__bg"> <div class="chrome-tab__bg">
<TagChrome /> <TagChrome />
</div> </div>
@@ -631,7 +635,6 @@ onBeforeUnmount(() => {
> >
<IconifyIconOffline :icon="Close" /> <IconifyIconOffline :icon="Close" />
</span> </span>
<span class="chrome-tab-divider" />
</div> </div>
</div> </div>
</div> </div>