UNPKG

566 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:host {
8 background: transparent;
9 display: flex;
10 align-items: center;
11 position: relative;
12}
13
14:host(.disabled) {
15 cursor: not-allowed;
16
17 a, nb-icon {
18 cursor: not-allowed;
19 }
20}
21
22:host-context(nb-actions.full-width) {
23 justify-content: center;
24 width: 100%;
25}
26
27a.icon-container {
28 position: relative;
29
30 &:hover, &:focus {
31 text-decoration: none;
32 }
33}
34
35nb-icon:hover {
36 cursor: pointer;
37}