UNPKG

658 BSCSSView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6
7@import '../../styles/core/mixins';
8
9@mixin nb-button-core() {
10 appearance: none;
11 text-align: center;
12 display: inline-flex;
13 align-items: center;
14 justify-content: center;
15 white-space: nowrap;
16 vertical-align: middle;
17 user-select: none;
18
19 &:hover,
20 &:focus {
21 text-decoration: none;
22 }
23
24 &.full-width {
25 width: 100%;
26 }
27
28 nb-icon {
29 vertical-align: top;
30 }
31
32 &.nb-transition {
33 @include nb-component-animation(background-color, border-color, box-shadow, color);
34 }
35}