Skip to content

Commit

Permalink
fix: use pointer cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
ert78gb committed Jun 26, 2024
1 parent 0b5030d commit aca7ad4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,6 @@
}
}

.nav-tabs > li {
overflow: hidden;
cursor: pointer;

&.disabled {
cursor: not-allowed;
}
}

.arrowCustom {
position: absolute;
top: -15px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ <h4 class="panel-title">
<ul class="nav nav-tabs">
<li *ngFor="let tab of state.tabs; let index = index"
class="nav-item"
[class.disabled]="tab.disabled"
(click)="onSelectTab(index)">
<a class="nav-link"
[class.active]="selectedTabIndex === index"
Expand Down
9 changes: 9 additions & 0 deletions packages/uhk-web/src/styles/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -307,3 +307,12 @@ mwl-confirmation-popover-window {
text-decoration: underline;
text-decoration-style: dotted;
}

.nav-tabs > li {
overflow: hidden;
cursor: pointer;

&.disabled {
cursor: not-allowed;
}
}

0 comments on commit aca7ad4

Please sign in to comment.