googlearchive / paper-toast

A lightweight feedback about an operation in a small popup at the base of the screen on mobile and at the lower left on desktop.
17 stars 8 forks source link

left must be overridden to allow positioning the toast to the right #9

Closed davenotik closed 9 years ago

davenotik commented 10 years ago

As per the docs, it says I can simply do right: 10px; but alas there's :host code that forces a left: 12px; (when in non-narrow mode). So I have to nullify that like so:

paper-toast {
  right: 10px;
  left: auto;
}

Either the element or the docs should change.