We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ed0d1 commit 0633062Copy full SHA for 0633062
projects/coreui-angular/src/lib/nav/nav.component.scss
@@ -1,3 +1,10 @@
1
:host .nav-link:focus {
2
outline: 0;
3
}
4
+
5
+// todo: temp fix for nav-underline-border
6
+:host.nav-underline-border {
7
+ column-gap: 0;
8
+}
9
10
projects/coreui-angular/src/lib/nav/nav.component.ts
@@ -14,9 +14,9 @@ export class NavComponent {
14
@Input() layout?: 'fill' | 'justified';
15
/**
16
* Set the nav variant to tabs or pills.
17
- * @type {'tabs' | 'pills' | 'underline'}
+ * @type 'tabs' | 'pills' | 'underline' | 'underline-border'
18
*/
19
- @Input() variant?: '' | 'tabs' | 'pills' ;
+ @Input() variant?: '' | 'tabs' | 'pills' | 'underline' | 'underline-border';
20
21
@HostBinding('class')
22
get hostClasses(): any {
0 commit comments