UNPKG

foundation-sites-5

Version:

**This package is only for versions 5 and earlier of Foundation. As of version 6, the package has a new name: `foundation-sites`.**

16 lines (13 loc) 565 B
{{#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}}