fix(expandable-tile): use css to ensure max-height value

This commit is contained in:
Eric Liu 2019-12-31 15:19:47 -08:00
commit 23a0de3f2a
2 changed files with 8 additions and 9 deletions

View file

@ -1,11 +1,11 @@
<script>
let className = undefined;
export { className as class };
export let direction = 'bottom';
export let align = 'center';
export let direction = 'bottom';
export let id = Math.random();
export let tooltipText = '';
export let style = undefined;
export let tooltipText = '';
import { cx } from '../../lib';
</script>