fixed seemingly right-aligned snackbar text

- this fixes the behavior of #56, but now the text is left-aligned instead of centered
This commit is contained in:
R. Aidan Campbell 2016-05-09 09:07:13 -04:00
parent eba64c2e46
commit 23e0fac911

View File

@ -103,9 +103,9 @@
</div> </div>
</dialog> </dialog>
<div id="snackbar" class="mdl-js-snackbar mdl-snackbar"> <div id="snackbar" class="mdl-snackbar mdl-js-snackbar">
<button class="mdl-snackbar__action" type="button"></button> <!-- this button exists to suppress the snackbar warning. we're really using a toast. -->
<div class="mdl-snackbar__text"></div> <div class="mdl-snackbar__text"></div>
<button class="mdl-snackbar__action" type="button"></button> <!-- this button exists to suppress the snackbar warning. we're really using a toast. -->
</div> </div>
</body> </body>
</html> </html>