Commit fbcba766aea895af7f35677ea4730c1a42dc9a54

Authored by Tanimodori
Committed by GitHub
1 parent 1455eb48

fix: 修复DrawerFooter border-top导致滚动条出现的问题 (#2002)

src/components/Drawer/src/components/DrawerFooter.vue
@@ -47,7 +47,7 @@ @@ -47,7 +47,7 @@
47 const heightStr = `${props.height}`; 47 const heightStr = `${props.height}`;
48 return { 48 return {
49 height: heightStr, 49 height: heightStr,
50 - lineHeight: heightStr, 50 + lineHeight: `calc(${heightStr} - 1px)`,
51 }; 51 };
52 }); 52 });
53 53