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

@mixin btn-size() {
  .btn.btn-lg {
    @include btn-lg();
  }

  .btn.btn-md {
    @include btn-md();
  }

  .btn.btn-sm {
    @include btn-sm();
  }

  .btn.btn-tn {
    @include btn-tn();
  }
}

@mixin btn-lg() {
  @include button-size(nga-theme(btn-padding-y-lg),
                       nga-theme(btn-padding-x-lg),
                       nga-theme(btn-font-size-lg),
                       nga-theme(btn-border-radius));
}

@mixin btn-md() {
  @include button-size(nga-theme(btn-padding-y-md),
                       nga-theme(btn-padding-x-md),
                       nga-theme(btn-font-size-md),
                       nga-theme(btn-border-radius));
}

@mixin btn-sm() {
  @include button-size(nga-theme(btn-padding-y-sm),
                       nga-theme(btn-padding-x-sm),
                       nga-theme(btn-font-size-sm),
                       nga-theme(btn-border-radius));
}

@mixin btn-tn() {
  @include button-size(nga-theme(btn-padding-y-tn),
                       nga-theme(btn-padding-x-tn),
                       nga-theme(btn-font-size-tn),
                       nga-theme(btn-border-radius));
}
