fix VDivder

This commit is contained in:
jxxghp
2024-05-07 13:50:49 +08:00
parent d44b62e489
commit 14b68135fb
2 changed files with 6 additions and 1 deletions

View File

@@ -225,7 +225,7 @@ onMounted(() => {
</VTooltip>
</VCardText>
<VDivider class="opacity-75" style="border-color: rgba(var(--v-theme-on-background), var(--v-selected-opacity))" />
<VDivider />
<VCardActions>
<VBtn v-if="!cardProps.site?.public" :disabled="updateButtonDisable" @click.stop="handleSiteUpdate">

View File

@@ -130,3 +130,8 @@
.v-toast {
z-index: 2500 !important;
}
.v-divider {
border-color: rgba(var(--v-theme-on-background), var(--v-selected-opacity));
opacity:0.75;
}