Skip to content

Commit

Permalink
feat(styling): set host to inline-block incase consumer wants to add …
Browse files Browse the repository at this point in the history
…bumpers
  • Loading branch information
jyounce committed Dec 16, 2018
1 parent dc0d907 commit af5d09f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/client/styles/main/host.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
* HOST
*******/
:host {
contain: content;
// paint causes popover not to show up in chrome
// layout causes vertical alignment issue in chrome v71.0.3+
contain: style;
display: inline-block;
}
:host([hidden]) {
display: none;
Expand Down

0 comments on commit af5d09f

Please sign in to comment.