Skip to content

Commit

Permalink
fix(dom): use default positioning in embedded mode
Browse files Browse the repository at this point in the history
  • Loading branch information
speigg committed Jun 9, 2017
1 parent 9486992 commit 812600c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/argon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export class ArgonSystem {
switch (mode) {
case ViewportMode.EMBEDDED:
const elementStyle = this.view.element.style;
elementStyle.position = 'relative';
elementStyle.position = '';
elementStyle.left = '0px';
elementStyle.bottom = '0px';
elementStyle.width = '100%';
Expand Down

0 comments on commit 812600c

Please sign in to comment.