This commit is contained in:
Max Lynch
2020-12-20 23:46:35 -06:00
parent e8324428bf
commit a4bb6d47a4
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import classNames from 'classnames';
const Content = ({ className, visible, children }) => (
<div className={classNames(`h-full overflow-auto py-2 absolute top-0 ${className || ''}`, {
<div className={classNames(`h-full overflow-auto py-2 absolute top-0`, className, {
visible,
invisible: !visible
})}>