修改选项卡的显示问题

v1.1.0
于肖磊 2024-11-22 18:06:37 +08:00
parent abb16dd6e7
commit 0d77db2eea
1 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,11 @@ const title_style = (index: number) => {
const padding_bottom = computed(() => {
let bottom = 0;
if (form.value.tabs_theme == '0') {
bottom = 3;
if (new_style.value.tabs_one_theme == '1') {
bottom = 6;
} else {
bottom = 3;
}
} else if (form.value.tabs_theme == '3') {
bottom = 10;
}