Skip to content

Commit

Permalink
fix: (platform) fix combobox styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Betrozov committed Jan 28, 2021
1 parent c5f60c4 commit f274174
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { OverlayModule } from '@angular/cdk/overlay';

import { ButtonModule, InputGroupModule, ListModule, TemplateModule } from '@fundamental-ngx/core';
import { ButtonModule, DynamicComponentService, InputGroupModule, ListModule, TemplateModule } from '@fundamental-ngx/core';
import { ComboboxComponent } from './combobox/combobox.component';
import { HighlightPipe } from './pipes/highlight.pipe';
import { PlatformAutoCompleteModule } from '../auto-complete/auto-complete.module';
Expand All @@ -19,6 +19,7 @@ import { PlatformAutoCompleteModule } from '../auto-complete/auto-complete.modul
OverlayModule,
PlatformAutoCompleteModule
],
providers: [DynamicComponentService],
exports: [ComboboxComponent, TemplateModule]
})
export class PlatformComboboxModule {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@import "~@angular/cdk/overlay-prebuilt";
@import '~fundamental-styles/dist/popover';

.fdp-combobox {
&__list-container {
&.fd-popover__popper {
Expand Down

0 comments on commit f274174

Please sign in to comment.