Browse Source

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

pull/1404/merge
Tanimodori 4 years ago
committed by GitHub
parent
commit
fbcba766ae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/Drawer/src/components/DrawerFooter.vue

2
src/components/Drawer/src/components/DrawerFooter.vue

@ -47,7 +47,7 @@
const heightStr = `${props.height}`;
return {
height: heightStr,
lineHeight: heightStr,
lineHeight: `calc(${heightStr} - 1px)`,
};
});

Loading…
Cancel
Save