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`.**
18 lines (14 loc) • 488 B
HTML
{{#markdown}}
```scss
/* Using the available options */
.your-class-name { @include label($padding,$text-size,$bg,$radius); }
/* Controls the padding, set to a string following top, right, bottom, left rules or change the variable */
$padding: $label-padding;
/* Control your text-size per label */
$text-size: $label-font-size;
/* Change the background color for your labels */
$bg: $primary-color;
/* Control how much radius is put on the labels */
$radius: false;
```
{{/markdown}}