Skip to content

Commit

Permalink
Fix text displayer positioning on IE
Browse files Browse the repository at this point in the history
Before, the text displayer on IE was positioned outside of the video
container, to the right.  On IE, the left property was defaulting to
something surprising.  The simple fix is to specify left: 0.

Change-Id: Iaf5456c4976afbe59853b32b978e63aac5df2571
  • Loading branch information
joeyparrish committed May 3, 2019
1 parent f7f5f0c commit 6a1cbc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/less/containers.less
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@

.shaka-text-container {
bottom: 15%;
top: 0%;
top: 0;
left: 0;
width: 100%;
min-width: 48px;

Expand Down

0 comments on commit 6a1cbc5

Please sign in to comment.