1.0.1 • Published 4 months ago

@springernature/global-button v1.0.1

Weekly downloads
76
License
MIT
Repository
-
Last release
4 months ago

Global Button

Button styles to use on buttons and links.

Usage

To include global-button in your application, you need to choose ONE brand from those available. The DEFAULT brand is included in all other brands, and any settings that are not configured will fall back to default.

// Pick ONE of the brands below to include
@import '@springernature/global-button/scss/10-settings/default';
@import '@springernature/global-button/scss/10-settings/springer';
@import '@springernature/global-button/scss/10-settings/nature';

// Incude this with your other mixins
@import '@springernature/global-button/scss/30-mixins/button';

// Incude this with your other components
@import '@springernature/global-button/scss/50-components/button';

Basic usage

<button class="c-button">text</button>

<a class="c-button" href="#">text</a> 

Themes

Add theme classes for different branding styles. If a theme does not exist for the brand you are using it will fallback to the default syle.

Primary

<button class="c-button c-button--primary">text</button>

Ghost

<button class="c-button c-button--ghost">text</button>

Disabled

<button class="c-button c-button--disabled" disabled>text</button>

Variants

Variant modifiers can be added to the default class, as well as to themes.

Small

<button class="c-button c-button--small">text</button>

Large

<button class="c-button c-button--large">text</button>

Full width

<button class="c-button c-button--full-width">text</button>

Icon left

<button class="c-button c-button--icon-left">
    <svg></svg>
    <span>text</span>
</button>

Icon right

<button class="c-button c-button--icon-right">
    <span>text</span>
    <svg></svg>
</button>
1.0.1

4 months ago

1.0.0

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.1

4 years ago