/**
 * @license
 * Copyright Akveo. All Rights Reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */

@import './shape-buttons';
@import './size-buttons';
@import './default-buttons';
@import './hero-buttons';
@import './outline-buttons';

@mixin nga-b-buttons-theme() {

  .btn {
    color: nga-theme(btn-text-color);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: nga-theme(font-weight-bolder);
    font-family: nga-theme(btn-font-family);
    line-height: nga-theme(btn-line-height);
    border: 2px solid transparent;
    transition: none;

    @include btn-md();
  }

  @include btn-shape();
  @include btn-size();

  @include btn-default();
  @include btn-hero();
  @include btn-outline();
}
