Skip to content

Commit

Permalink
fix(core) Properly attach classes | Override styling (#3369)
Browse files Browse the repository at this point in the history
  • Loading branch information
salarenko committed Sep 24, 2020
1 parent 2edbfc7 commit 494d680
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<fd-popover
class="fd-form-input-message-group fd-popover--input-message-group"
class="fd-form-input-message-group"
[placement]="placement"
[triggers]="triggers"
[noArrow]="noArrow"
Expand All @@ -9,6 +9,7 @@
[isOpen]="isOpen"
(isOpenChange)="openChanged($event)"
[addContainerClass]="'fd-popover-container-custom--message'"
[additionalClasses]="['fd-popover__popper--input-message-group']"
>
<fd-popover-control>
<ng-content></ng-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@
display: block;
}
}

.fd-popover__popper.fd-popover__popper--input-message-group {
margin-top: 0 !important;
z-index: 999;
}

0 comments on commit 494d680

Please sign in to comment.