Skip to content

Commit 54bb75b

Browse files
committed
fix(navbar): no styles for brand item (#UIM-762) (#703)
1 parent f2a55e3 commit 54bb75b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/mosaic/navbar/navbar-item.component.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,6 @@ export const McNavbarMixinBase: CanDisableCtor & typeof McNavbarItemBase = mixin
136136
selector: 'mc-navbar-item, [mc-navbar-item]',
137137
exportAs: 'mcNavbarItem',
138138
template: `<ng-content></ng-content>`,
139-
styleUrls: [
140-
'./navbar-item.scss',
141-
'./navbar-brand.scss',
142-
'./navbar-divider.scss'
143-
],
144139
host: {
145140
class: 'mc-navbar-item',
146141
'[class.mc-navbar-item_collapsed]': 'collapsed',

packages/mosaic/navbar/navbar.component.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ export class McNavbarContainer {}
3030
@Component({
3131
selector: 'mc-navbar',
3232
template: `<ng-content select="[mc-navbar-container], mc-navbar-container"></ng-content>`,
33-
styleUrls: ['./navbar.scss'],
33+
styleUrls: [
34+
'./navbar.scss',
35+
'./navbar-item.scss',
36+
'./navbar-brand.scss',
37+
'./navbar-divider.scss'
38+
],
3439
host: {
3540
class: 'mc-navbar',
3641
'(window:resize)': 'resizeStream.next($event)'

0 commit comments

Comments
 (0)