zurb-foundation-5
Version:
Foundation 5 for npm (no code modification from original repo)
16 lines (13 loc) • 565 B
HTML
{{#markdown}}
```scss
/* Container mixin and its options */
.your-class-name { @include dropdown-container($content, $triangle, $max-width); }
/* This can be set to "list" or "content" depending on what you want inside. */
$content: list;
/* If you do not want to attach the triangle pop, set this to false. */
$triangle: true;
/* By default, the dropdown is 200px max-width, taking on 100% when gets smaller than that. */
/* You can set this to any number you want or change it globally with the variable. */
$max-width: $f-dropdown-max-width;
```
{{/markdown}}